diff options
author | Adam Thomson <Adam.Thomson.Opensource@diasemi.com> | 2017-11-17 15:09:27 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-27 17:10:48 +0000 |
commit | d3b0535216f04e7e149eaebe8e967c46bdf88dc3 (patch) | |
tree | e2c2d855238687393774990ed345f1716a30801d /Documentation | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) | |
download | linux-stable-d3b0535216f04e7e149eaebe8e967c46bdf88dc3.tar.gz linux-stable-d3b0535216f04e7e149eaebe8e967c46bdf88dc3.tar.bz2 linux-stable-d3b0535216f04e7e149eaebe8e967c46bdf88dc3.zip |
ASoC: da7219: Correct IRQ level in DT binding example
Current DT binding documentation shows an example where the IRQ
for the device is chosen to be ACTIVE_HIGH. This is incorrect as
the device only supports ACTIVE_LOW, so this commit fixes that
discrepancy.
Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/sound/da7219.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/sound/da7219.txt b/Documentation/devicetree/bindings/sound/da7219.txt index cf61681826b6..5b54d2d045c3 100644 --- a/Documentation/devicetree/bindings/sound/da7219.txt +++ b/Documentation/devicetree/bindings/sound/da7219.txt @@ -77,7 +77,7 @@ Example: reg = <0x1a>; interrupt-parent = <&gpio6>; - interrupts = <11 IRQ_TYPE_LEVEL_HIGH>; + interrupts = <11 IRQ_TYPE_LEVEL_LOW>; VDD-supply = <®_audio>; VDDMIC-supply = <®_audio>; |