]> Git Repo - linux.git/commitdiff
ASoC: da7218: Correct IRQ level in DT binding example
authorAdam Thomson <[email protected]>
Fri, 17 Nov 2017 15:09:28 +0000 (15:09 +0000)
committerMark Brown <[email protected]>
Mon, 27 Nov 2017 17:11:10 +0000 (17:11 +0000)
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 <[email protected]>
Acked-by: Rob Herring <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Documentation/devicetree/bindings/sound/da7218.txt

index 5ca5a709b6aa1989901eff6b9239f0bc71d0d272..3ab9dfef38d113523549e66cee20ad8db6e56842 100644 (file)
@@ -73,7 +73,7 @@ Example:
                compatible = "dlg,da7218";
                reg = <0x1a>;
                interrupt-parent = <&gpio6>;
-               interrupts = <11 IRQ_TYPE_LEVEL_HIGH>;
+               interrupts = <11 IRQ_TYPE_LEVEL_LOW>;
                wakeup-source;
 
                VDD-supply = <&reg_audio>;
This page took 0.051245 seconds and 4 git commands to generate.