Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e98bd707 authored by Roger Shimizu's avatar Roger Shimizu Committed by Gregory CLEMENT
Browse files

ARM: dts: kirkwood: gpio-leds fixes for linkstation ls-wxl/wsxl



The GPIOs controlling the LEDs, listed below, are active high, not low:
  - gpio-leds: "lswxl:blue:power" pin
  - gpio-leds: "lswxl:red:func" pin
  - gpio-leds: "lswxl:red:hdderr{0,1}" pin

Fixes: e54e4b1b ("ARM: dts: add buffalo linkstation ls-wxl/wsxl")
Signed-off-by: default avatarRoger Shimizu <rogershimizu@gmail.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
parent 6f86e9ad
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -201,23 +201,23 @@

		led@4 {
			label = "lswxl:blue:power";
			gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
			gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
			default-state = "keep";
		};

		led@5 {
			label = "lswxl:red:func";
			gpios = <&gpio1 2 GPIO_ACTIVE_LOW>;
			default-state = "keep";
			gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
		};

		led@6 {
			label = "lswxl:red:hdderr0";
			gpios = <&gpio0 8 GPIO_ACTIVE_LOW>;
			gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
		};

		led@7 {
			label = "lswxl:red:hdderr1";
			gpios = <&gpio1 14 GPIO_ACTIVE_LOW>;
			gpios = <&gpio1 14 GPIO_ACTIVE_HIGH>;
		};
	};