Skip to content

Commit 0418138

Browse files
rogers0gclement
authored andcommitted
ARM: dts: kirkwood: gpio-leds fixes for linkstation ls-wvl/vl
The GPIOs controlling the LEDs, listed below, are active high, not low: - gpio-leds: "lswvl:red:alarm" pin - gpio-leds: "lswvl:red:func" pin - gpio-leds: "lswvl:amber:info" pin - gpio-leds: "lswvl:blue:func" pin - gpio-leds: "lswvl:red:hdderr{0,1}" pin Fixes: c43379e ("ARM: dts: add buffalo linkstation ls-wvl/vl") Signed-off-by: Roger Shimizu <rogershimizu@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
1 parent e98bd70 commit 0418138

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

arch/arm/boot/dts/kirkwood-lswvl.dts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,22 +186,22 @@
186186

187187
led@1 {
188188
label = "lswvl:red:alarm";
189-
gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
189+
gpios = <&gpio1 4 GPIO_ACTIVE_HIGH>;
190190
};
191191

192192
led@2 {
193193
label = "lswvl:red:func";
194-
gpios = <&gpio1 5 GPIO_ACTIVE_LOW>;
194+
gpios = <&gpio1 5 GPIO_ACTIVE_HIGH>;
195195
};
196196

197197
led@3 {
198198
label = "lswvl:amber:info";
199-
gpios = <&gpio1 6 GPIO_ACTIVE_LOW>;
199+
gpios = <&gpio1 6 GPIO_ACTIVE_HIGH>;
200200
};
201201

202202
led@4 {
203203
label = "lswvl:blue:func";
204-
gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
204+
gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
205205
};
206206

207207
led@5 {
@@ -212,12 +212,12 @@
212212

213213
led@6 {
214214
label = "lswvl:red:hdderr0";
215-
gpios = <&gpio1 2 GPIO_ACTIVE_LOW>;
215+
gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
216216
};
217217

218218
led@7 {
219219
label = "lswvl:red:hdderr1";
220-
gpios = <&gpio1 3 GPIO_ACTIVE_LOW>;
220+
gpios = <&gpio1 3 GPIO_ACTIVE_HIGH>;
221221
};
222222
};
223223

0 commit comments

Comments
 (0)