Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: dt-bindings: maxim,max9867: add clocks property

Add clocks property to require a "mclk" definition for the
maxim,max9867 codec.

Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Link: https://lore.kernel.org/r/20230302-max9867-v2-2-fd2036d5e825@skidata.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Richard Leitner and committed by
Mark Brown
d63e55b3 6668f70a

+11
+11
Documentation/devicetree/bindings/sound/maxim,max9867.yaml
··· 35 35 reg: 36 36 maxItems: 1 37 37 38 + clocks: 39 + maxItems: 1 40 + 38 41 required: 39 42 - compatible 40 43 - reg 44 + - clocks 41 45 42 46 additionalProperties: false 43 47 ··· 54 50 compatible = "maxim,max9867"; 55 51 #sound-dai-cells = <0>; 56 52 reg = <0x18>; 53 + clocks = <&codec_clk>; 57 54 }; 55 + }; 56 + 57 + codec_clk: clock { 58 + compatible = "fixed-clock"; 59 + #clock-cells = <0>; 60 + clock-frequency = <12288000>; 58 61 }; 59 62 ...