OSDN Git Service

ARM: dts: imx31: fix clock control module interrupts description
authorVladimir Zapolskiy <vz@mleia.com>
Mon, 26 Sep 2016 00:03:40 +0000 (03:03 +0300)
committerShawn Guo <shawnguo@kernel.org>
Tue, 1 Nov 2016 08:42:41 +0000 (16:42 +0800)
The type of AVIC interrupt controller found on i.MX31 is one-cell,
namely 31 for CCM DVFS and 53 for CCM, however for clock control
module its interrupts are specified as 3-cells, fix it.

Fixes: ef0e4a606fb6 ("ARM: mx31: Replace clk_register_clkdev with clock DT lookup")
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Documentation/devicetree/bindings/clock/imx31-clock.txt
arch/arm/boot/dts/imx31.dtsi

index 19df842..8163d56 100644 (file)
@@ -77,7 +77,7 @@ Examples:
 clks: ccm@53f80000{
        compatible = "fsl,imx31-ccm";
        reg = <0x53f80000 0x4000>;
-       interrupts = <0 31 0x04 0 53 0x04>;
+       interrupts = <31>, <53>;
        #clock-cells = <1>;
 };
 
index 1ce7ae9..3e0893e 100644 (file)
                        clks: ccm@53f80000{
                                compatible = "fsl,imx31-ccm";
                                reg = <0x53f80000 0x4000>;
-                               interrupts = <0 31 0x04 0 53 0x04>;
+                               interrupts = <31>, <53>;
                                #clock-cells = <1>;
                        };
                };