Skip to content

Commit dc761f1

Browse files
lategoodbyeffainelli
authored andcommitted
ARM: dts: bcm2711-rpi-400: Fix delete-node of led_act
The LED ACT which is included from bcm2711-rpi-4-b doesn't exists on the Raspberry Pi 400. So the bcm2711-rpi-400.dts tries to use the delete-node directive in order to remove the complete node. Unfortunately the usage get broken in commit 1156e3a ("ARM: dts: bcm283x: Move ACT LED into separate dtsi") and now ACT and PWR LED using the same GPIO and this prevent probing of led-gpios on Raspberry Pi 400: leds-gpio: probe of leds failed with error -16 So fix the delete-node directive. Fixes: 1156e3a ("ARM: dts: bcm283x: Move ACT LED into separate dtsi") Signed-off-by: Stefan Wahren <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Florian Fainelli <[email protected]>
1 parent b85ea95 commit dc761f1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

arch/arm/boot/dts/broadcom/bcm2711-rpi-400.dts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@
3636
gpios = <&gpio 42 GPIO_ACTIVE_HIGH>;
3737
};
3838

39-
&leds {
40-
/delete-node/ led_act;
41-
};
39+
/delete-node/ &led_act;
4240

4341
&pm {
4442
/delete-property/ system-power-controller;

0 commit comments

Comments
 (0)