diff options
author | Leon M. George <leon@georgemail.eu> | 2019-07-26 20:21:26 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-08-04 22:39:57 +0200 |
commit | 7e4ce0c655ef61e2ba80e1605362f132b5678d27 (patch) | |
tree | 66b4b2c9f618fa376c112379fd7262d2b46bb272 /target/linux/ar71xx/files/arch | |
parent | b7e7d220e7eff6ac1d73c5b97dec448704b26735 (diff) | |
download | upstream-7e4ce0c655ef61e2ba80e1605362f132b5678d27.tar.gz upstream-7e4ce0c655ef61e2ba80e1605362f132b5678d27.tar.bz2 upstream-7e4ce0c655ef61e2ba80e1605362f132b5678d27.zip |
ar71xx: wpj531: fix SIG1/RSS1 LED GPIO
In commit 6c937df749c7 ("ar71xx: wpj531: fix GPIOs for LED") wrong GPIO
13 for SIG1/RSS1 LED was commited, the correct GPIO number for this LED
is 12.
It's listed in "Hardware Guide - wpj531 7A06 (02/07/2019)" as GPIO12/RSS1
on the LED header and same GPIO 12 is used in the vendor's SDK as well.
Fixes: 6c937df749c7 ("ar71xx: wpj531: fix GPIOs for LED")
Signed-off-by: Leon M. George <leon@georgemail.eu>
[commit subject/message facelift]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit c070662980047838004b83f7af59e7015d3c7922)
Diffstat (limited to 'target/linux/ar71xx/files/arch')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-wpj531.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj531.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj531.c index df817dac91..351293230f 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj531.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj531.c @@ -35,7 +35,7 @@ #include "dev-wmac.h" #include "machtypes.h" -#define WPJ531_GPIO_LED_SIG1 13 +#define WPJ531_GPIO_LED_SIG1 12 #define WPJ531_GPIO_LED_SIG2 14 #define WPJ531_GPIO_LED_SIG3 15 #define WPJ531_GPIO_LED_SIG4 16 |