diff options
author | John Crispin <john@openwrt.org> | 2015-02-09 12:17:00 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-02-09 12:17:00 +0000 |
commit | b523db36a0ea0152257906c5b294e4df6ba91156 (patch) | |
tree | a8e7cae58ce3a7f6d7b0ff1762feef9b6ac95f82 /target | |
parent | a5b60de2535a518e43fc67060512f2e9a9b93c30 (diff) | |
download | upstream-b523db36a0ea0152257906c5b294e4df6ba91156.tar.gz upstream-b523db36a0ea0152257906c5b294e4df6ba91156.tar.bz2 upstream-b523db36a0ea0152257906c5b294e4df6ba91156.zip |
ar71xx: dir-505: fix reset button gpio active_low value
Fix 'active_low' default value for the reset button on DIR-505.
Signed-off-by: Rocco Folino <rocco@devzen.net>
SVN-Revision: 44360
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-dir-505-a1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-505-a1.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-505-a1.c index d3914659ef..1367b64a8f 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-505-a1.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-505-a1.c @@ -59,7 +59,7 @@ static struct gpio_keys_button dir_505_a1_gpio_keys[] __initdata = { .code = KEY_RESTART, .debounce_interval = DIR_505A1_KEYS_DEBOUNCE_INTERVAL, .gpio = DIR_505A1_GPIO_BTN_RESET, - .active_low = 1, + .active_low = 0, }, { .desc = "WPS button", .type = EV_KEY, |