diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2020-04-19 20:11:47 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2020-05-22 00:31:43 +0300 |
commit | 55d26c38442e8f23491085b5cebddd352dea9e9a (patch) | |
tree | 58434e7a7d3b68f8b9f6042c1f4aa3238a965091 /arch/arm/boot/dts/pxa3xx.dtsi | |
parent | 51d6bba66113f7da02f2c0b645c721f1ba6b98eb (diff) | |
download | linux-55d26c38442e8f23491085b5cebddd352dea9e9a.tar.xz |
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: Lubomir Rintel <lkundrak@v3.sk>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Robert Jarzmik <robert.jarzmik@free.fr.>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/boot/dts/pxa3xx.dtsi')
-rw-r--r-- | arch/arm/boot/dts/pxa3xx.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/pxa3xx.dtsi b/arch/arm/boot/dts/pxa3xx.dtsi index c237a0e4b12a..d19674812cd2 100644 --- a/arch/arm/boot/dts/pxa3xx.dtsi +++ b/arch/arm/boot/dts/pxa3xx.dtsi @@ -170,7 +170,7 @@ 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; |