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

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: dt-bindings: amlogic-sound-cards: document

Merge series from Neil Armstrong <neil.armstrong@linaro.org>:

Following an off-list discution with Jerome about fixing the following
DTBs check errors:
sound: Unevaluated properties are not allowed ('assigned-clock-parents', 'assigned-clock-rates', 'assigned-clocks' were unexpected)
from schema $id: http://devicetree.org/schemas/sound/amlogic,axg-sound-card.yaml#
sound: Unevaluated properties are not allowed ('assigned-clock-parents', 'assigned-clock-rates', 'assigned-clocks' were unexpected)
from schema $id: http://devicetree.org/schemas/sound/amlogic,gx-sound-card.yaml#
sound: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'#clock-cells' is a required property
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#

It has been agreed documenting the clock in the sound card is a better solution
than moving them to a random clock controller or consumer node which is not
related to the actual meaning of those root frequencies.

The patchset adds the clocks proprty to the bindings and finally adds the
properties to the DT files.

+14
+7
Documentation/devicetree/bindings/sound/amlogic,axg-sound-card.yaml
··· 26 26 A list off component DAPM widget. Each entry is a pair of strings, 27 27 the first being the widget type, the second being the widget name 28 28 29 + clocks: 30 + minItems: 1 31 + maxItems: 3 32 + description: 33 + Base PLL clocks of audio susbsytem, used to configure base clock 34 + frequencies for different audio use-cases. 35 + 29 36 patternProperties: 30 37 "^dai-link-[0-9]+$": 31 38 type: object
+7
Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml
··· 27 27 A list off component DAPM widget. Each entry is a pair of strings, 28 28 the first being the widget type, the second being the widget name 29 29 30 + clocks: 31 + minItems: 1 32 + maxItems: 3 33 + description: 34 + Base PLL clocks of audio susbsytem, used to configure base clock 35 + frequencies for different audio use-cases. 36 + 30 37 patternProperties: 31 38 "^dai-link-[0-9]+$": 32 39 type: object