Browse Source

ar71xx: fix tl-wa901nd buttons code

This patch fixes the code of the buttons for TP-Link WA901ND.

Signed-off-by: Rocco Folino <[email protected]>
Signed-off-by: Gabor Juhos <[email protected]>

SVN-Revision: 37696
Gabor Juhos 12 years ago
parent
commit
99a12119ca
1 changed files with 2 additions and 2 deletions
  1. 2 2
      target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa901nd.c

+ 2 - 2
target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa901nd.c

@@ -61,14 +61,14 @@ static struct gpio_keys_button tl_wa901nd_gpio_keys[] __initdata = {
 	{
 		.desc		= "reset",
 		.type		= EV_KEY,
-		.code		= BTN_0,
+		.code		= KEY_RESTART,
 		.debounce_interval = TL_WA901ND_KEYS_DEBOUNCE_INTERVAL,
 		.gpio		= TL_WA901ND_GPIO_BTN_RESET,
 		.active_low	= 1,
 	}, {
 		.desc		= "qss",
 		.type		= EV_KEY,
-		.code		= BTN_1,
+		.code		= KEY_WPS_BUTTON,
 		.debounce_interval = TL_WA901ND_KEYS_DEBOUNCE_INTERVAL,
 		.gpio		= TL_WA901ND_GPIO_BTN_QSS,
 		.active_low	= 1,