mirror of https://github.com/hak5/openwrt.git
ath79: ar9330: fix switch_led_disable_pins reg value
In commitopenwrt-19.07e9652e1696
("ath79: fix pinmux for ar933x devices") I've wrongly changed desired register value to 0xf8 although it should've been set to 0x0. 0xf8 value sets bits 3-7 (ETH_SWITCH_LEDx_EN) to 1 which actually enables ethernet switch LEDs, so 0x0 is correct value in order to use the pins as GPIO. Fixes:e9652e1696
("ath79: fix pinmux for ar933x devices") Reported-by: Chuanhong Guo <gch981213@gmail.com> Signed-off-by: Petr Štetiar <ynezz@true.cz>
parent
e2c0a2cb95
commit
8be66c2332
|
@ -75,7 +75,7 @@
|
|||
};
|
||||
|
||||
switch_led_disable_pins: pinmux_switch_led_disable_pins {
|
||||
pinctrl-single,bits = <0x0 0xf8 0xf8>;
|
||||
pinctrl-single,bits = <0x0 0x0 0xf8>;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue