diff options
author | Vladimir Zapolskiy <vz@mleia.com> | 2016-09-25 20:03:40 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-26 02:24:36 -0500 |
commit | 979f63227c98004635b6c329749618372a3ff4bf (patch) | |
tree | 2c7abc146c49812e6d9e455258b8b37203e0c824 /Documentation/devicetree | |
parent | e95bd2ca11a9b680a46ac4af6167d5299753a1f5 (diff) |
ARM: dts: imx31: fix clock control module interrupts description
commit 2e575cbc930901718cc18e084566ecbb9a4b5ebb upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/clock/imx31-clock.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/clock/imx31-clock.txt b/Documentation/devicetree/bindings/clock/imx31-clock.txt index 19df842c694f..8163d565f697 100644 --- a/Documentation/devicetree/bindings/clock/imx31-clock.txt +++ b/Documentation/devicetree/bindings/clock/imx31-clock.txt | |||
@@ -77,7 +77,7 @@ Examples: | |||
77 | clks: ccm@53f80000{ | 77 | clks: ccm@53f80000{ |
78 | compatible = "fsl,imx31-ccm"; | 78 | compatible = "fsl,imx31-ccm"; |
79 | reg = <0x53f80000 0x4000>; | 79 | reg = <0x53f80000 0x4000>; |
80 | interrupts = <0 31 0x04 0 53 0x04>; | 80 | interrupts = <31>, <53>; |
81 | #clock-cells = <1>; | 81 | #clock-cells = <1>; |
82 | }; | 82 | }; |
83 | 83 | ||