ar71xx: cr5000: Fix the reset button as KEY_RESTART
The reset button was incorrectly returning KEY_WPS_BUTTON as the key code. We want KEY_RESTART., so make that fix. Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
This commit is contained in:
parent
a208e07790
commit
ffc71cd2d0
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ static struct gpio_keys_button cr5000_gpio_keys[] __initdata = {
|
|||
{
|
||||
.desc = "Reset button",
|
||||
.type = EV_KEY,
|
||||
.code = KEY_WPS_BUTTON,
|
||||
.code = KEY_RESTART,
|
||||
.debounce_interval = CR5000_KEYS_DEBOUNCE_INTERVAL,
|
||||
.gpio = CR5000_GPIO_BTN_RESET,
|
||||
.active_low = 1,
|
||||
|
|
Loading…
Reference in a new issue