Commit 55d26c38 authored by Lubomir Rintel's avatar Lubomir Rintel Committed by Arnd Bergmann

ARM: dts: pxa3xx: Fix up encoding of the /gpio interrupts property

This way the device tree validator learns that each cell of the property
constitutes a separate item. Otherwise it gets unnecessairly upset:

  pxa300-raumfeld-speaker-s.dt.yaml: gpio@40e00000: interrupts:
      [[8, 9, 10]] is too short
Signed-off-by: default avatarLubomir Rintel <lkundrak@v3.sk>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reviewed-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr.>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 51d6bba6
......@@ -170,7 +170,7 @@ gpio: gpio@40e00000 {
clocks = <&clks CLK_GPIO>;
gpio-ranges = <&pinctrl 0 0 128>;
interrupt-names = "gpio0", "gpio1", "gpio_mux";
interrupts = <8 9 10>;
interrupts = <8>, <9>, <10>;
gpio-controller;
#gpio-cells = <0x2>;
interrupt-controller;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment