From: Fabio Estevam <festevam@xxxxxxx> On the i.MX5 chips the peripheral interrupts are represented directly only by their interrupt numbers. Make the CCM nodes to follow this format. Signed-off-by: Fabio Estevam <festevam@xxxxxxx> --- Changes since v1: - Use interrupts = <71>, <72>; Documentation/devicetree/bindings/clock/imx5-clock.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/clock/imx5-clock.yaml b/Documentation/devicetree/bindings/clock/imx5-clock.yaml index 423c0142c1d3..ad03c0a13e64 100644 --- a/Documentation/devicetree/bindings/clock/imx5-clock.yaml +++ b/Documentation/devicetree/bindings/clock/imx5-clock.yaml @@ -46,13 +46,11 @@ additionalProperties: false examples: - | #include <dt-bindings/clock/imx5-clock.h> - #include <dt-bindings/interrupt-controller/arm-gic.h> clock-controller@53fd4000{ compatible = "fsl,imx53-ccm"; reg = <0x53fd4000 0x4000>; - interrupts = <0 71 IRQ_TYPE_LEVEL_HIGH>, - <0 72 IRQ_TYPE_LEVEL_HIGH>; + interrupts = <71>, <72>; #clock-cells = <1>; }; ... -- 2.34.1