Commit 00afb181 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

Merge tag 'asoc-fix-v7.0-rc7' of...

Merge tag 'asoc-fix-v7.0-rc7' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus

ASoC: Fixes for v7.0

A somewhat larger set of fixes than I'd like unfortunatey, not from any
one place but rather spread out over different drivers.  We've got a
bunch more fixes for the SDCA interrupt support, several relatively
minor SOF fixes, a few more driver specific fixes and a couple more AMD
quirks.
parents 082c192c 6b6f7263
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
Alan Cox <alan@lxorguk.ukuu.org.uk>
Alan Cox <root@hraefn.swansea.linux.org.uk>
Alyssa Rosenzweig <alyssa@rosenzweig.io>
Askar Safin <safinaskar@gmail.com>
Christoph Hellwig <hch@lst.de>
Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Marc Gonzalez <marc.w.gonzalez@free.fr>
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ then:
  required:
    - refresh-rate-hz

additionalProperties: false
unevaluatedProperties: false

examples:
  - |
+1 −0
Original line number Diff line number Diff line
@@ -301,6 +301,7 @@ properties:
    maxItems: 4

dependencies:
  pd-disable: [typec-power-opmode]
  sink-vdos-v1: [ sink-vdos ]
  sink-vdos: [ sink-vdos-v1 ]

+2 −2
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ properties:
    const: 2

  "#interrupt-cells":
    const: 1
    const: 2

  ngpios:
    description:
@@ -86,7 +86,7 @@ examples:
        gpio-controller;
        #gpio-cells = <2>;
        interrupt-controller;
        #interrupt-cells = <1>;
        #interrupt-cells = <2>;
        interrupts = <53>, <53>, <53>, <53>,
                     <53>, <53>, <53>, <53>,
                     <53>, <53>, <53>, <53>,
+10 −3
Original line number Diff line number Diff line
@@ -34,6 +34,9 @@ properties:
    maxItems: 1
    description: gpio pin to enable/disable the device

  '#sound-dai-cells':
    const: 0

required:
  - compatible
  - reg
@@ -41,7 +44,10 @@ required:
  - iovdd-supply
  - avdd-supply

additionalProperties: false
allOf:
  - $ref: dai-common.yaml#

unevaluatedProperties: false

examples:
  - |
@@ -54,6 +60,7 @@ examples:
        audio-codec@41 {
            compatible = "ti,tas2552";
            reg = <0x41>;
            #sound-dai-cells = <0>;
            vbat-supply = <&reg_vbat>;
            iovdd-supply = <&reg_iovdd>;
            avdd-supply = <&reg_avdd>;
Loading