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:
Fabio Estevam
2025-01-12 12:27:44 -03:00
committed by Shawn Guo
parent bb93ead694
commit 9c9b2d86a6
3 changed files with 3 additions and 3 deletions

View File

@@ -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>;
};

View File

@@ -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>;
};
};

View File

@@ -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>;
};