diff options
author | Christian Lamparter <chunkeey@gmail.com> | 2022-06-24 20:55:15 +0200 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-06-25 22:18:35 +0200 |
commit | a4390ea283893fd3166bf660c32f263a6501d5b5 (patch) | |
tree | b888f7f8268eab62867882b417ef4a571be7db4d /target/linux/apm821xx/dts/netgear-wndap660.dts | |
parent | 7bc1d7641995ede3a0360242cc08d69269daa18e (diff) | |
download | upstream-a4390ea283893fd3166bf660c32f263a6501d5b5.tar.gz upstream-a4390ea283893fd3166bf660c32f263a6501d5b5.tar.bz2 upstream-a4390ea283893fd3166bf660c32f263a6501d5b5.zip |
apm821xx: WNDAP660: fix ethernet port ordering
Tim Small reported:
| Viewing the 'Network' -> 'Switch' config page in LuCI:
|
| The LuCI LAN 1 port corresponds to the port physically
| labelled 2 at the rear of the device.
| [...]
|
| When a patch cord is attached to the port labelled 1 [...],
| the LED labelled °2 illuminates.
=> essentially, the Ports and LEDs are reversed.
Reported-by: Tim Small
Fixes: #10111
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
(cherry picked from commit 36483600d337ab3ec8a6dabeaa160614d07f5588)
Diffstat (limited to 'target/linux/apm821xx/dts/netgear-wndap660.dts')
-rw-r--r-- | target/linux/apm821xx/dts/netgear-wndap660.dts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/apm821xx/dts/netgear-wndap660.dts b/target/linux/apm821xx/dts/netgear-wndap660.dts index f01d1b3be0..7cef1f5a45 100644 --- a/target/linux/apm821xx/dts/netgear-wndap660.dts +++ b/target/linux/apm821xx/dts/netgear-wndap660.dts @@ -14,28 +14,28 @@ color = <LED_COLOR_ID_GREEN>; function = LED_FUNCTION_LAN; function-enumerator = <1>; - gpios = <&GPIO0 22 GPIO_ACTIVE_HIGH>; + gpios = <&GPIO0 9 GPIO_ACTIVE_HIGH>; }; led-6 { color = <LED_COLOR_ID_AMBER>; function = LED_FUNCTION_LAN; - function-enumerator = <0>; - gpios = <&GPIO0 23 GPIO_ACTIVE_HIGH>; + function-enumerator = <1>; + gpios = <&GPIO0 10 GPIO_ACTIVE_HIGH>; }; led-7 { color = <LED_COLOR_ID_GREEN>; function = LED_FUNCTION_LAN; function-enumerator = <2>; - gpios = <&GPIO0 9 GPIO_ACTIVE_HIGH>; + gpios = <&GPIO0 22 GPIO_ACTIVE_HIGH>; }; led-8 { color = <LED_COLOR_ID_AMBER>; function = LED_FUNCTION_LAN; - function-enumerator = <1>; - gpios = <&GPIO0 10 GPIO_ACTIVE_HIGH>; + function-enumerator = <2>; + gpios = <&GPIO0 23 GPIO_ACTIVE_HIGH>; }; }; |