Skip to content

Commit 3fa8c49

Browse files
committed
arm64: dts: rockchip: fix trailing 0 in rk3328 tsadc interrupts
Probably due to some copy-paste mistake, the tsadc of rk3328 ended up with a 0 as 4th element that shouldn't be there, as interrupts on the rk3328 only have multiples of 3, making dtc complain. So remove it. Signed-off-by: Heiko Stuebner <heiko@sntech.de>
1 parent 4fbd8d1 commit 3fa8c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/boot/dts/rockchip/rk3328.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@
514514
tsadc: tsadc@ff250000 {
515515
compatible = "rockchip,rk3328-tsadc";
516516
reg = <0x0 0xff250000 0x0 0x100>;
517-
interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH 0>;
517+
interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>;
518518
assigned-clocks = <&cru SCLK_TSADC>;
519519
assigned-clock-rates = <50000>;
520520
clocks = <&cru SCLK_TSADC>, <&cru PCLK_TSADC>;

0 commit comments

Comments
 (0)