[PATCH] ASoC: dt-bindings: dai-common: Narrow possible sound-dai-cells

From: Krzysztof Kozlowski
Date: Tue Jan 09 2024 - 16:38:31 EST


Instead of accepting any value for sound-dai-cells, the common DAI
properties schema should narrow them to sane choice.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@xxxxxxxxxx>

---

Mostly sound-dai-cells are 0 or 1, but
Documentation/devicetree/bindings/sound/amlogic,aiu.yaml has value of 2.
---
Documentation/devicetree/bindings/sound/dai-common.yaml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/dai-common.yaml b/Documentation/devicetree/bindings/sound/dai-common.yaml
index 1aed2f0f1775..6db35887cbe6 100644
--- a/Documentation/devicetree/bindings/sound/dai-common.yaml
+++ b/Documentation/devicetree/bindings/sound/dai-common.yaml
@@ -13,6 +13,7 @@ allOf:
- $ref: component-common.yaml#

properties:
- '#sound-dai-cells': true
+ '#sound-dai-cells':
+ enum: [0, 1, 2]

additionalProperties: true
--
2.34.1