mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 07:03:28 -04:00
ARM: dts: imx5: Fix the CCM interrupts description
On the i.MX5 chips the peripheral interrupts are represented directly only by their interrupt numbers. The CCM nodes are not following this format and cause the following dt-schema warnings: ccm@73fd4000: interrupts: [[0], [71], [4], [0], [72], [4]] is too long Fix it by passing only the two interrupt numbers. Run-time tested in on an imx53-qsb board. Signed-off-by: Fabio Estevam <festevam@denx.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
@@ -338,7 +338,7 @@ src: reset-controller@53fd0000 {
|
||||
clks: ccm@53fd4000 {
|
||||
compatible = "fsl,imx50-ccm";
|
||||
reg = <0x53fd4000 0x4000>;
|
||||
interrupts = <0 71 0x04 0 72 0x04>;
|
||||
interrupts = <71>, <72>;
|
||||
#clock-cells = <1>;
|
||||
};
|
||||
|
||||
|
||||
@@ -458,7 +458,7 @@ src: reset-controller@73fd0000 {
|
||||
clks: ccm@73fd4000 {
|
||||
compatible = "fsl,imx51-ccm";
|
||||
reg = <0x73fd4000 0x4000>;
|
||||
interrupts = <0 71 0x04 0 72 0x04>;
|
||||
interrupts = <71>, <72>;
|
||||
#clock-cells = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -598,7 +598,7 @@ src: reset-controller@53fd0000 {
|
||||
clks: ccm@53fd4000 {
|
||||
compatible = "fsl,imx53-ccm";
|
||||
reg = <0x53fd4000 0x4000>;
|
||||
interrupts = <0 71 0x04 0 72 0x04>;
|
||||
interrupts = <71>, <72>;
|
||||
#clock-cells = <1>;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user