diff options
5 files changed, 9 insertions, 9 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-rt-n15.c b/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-rt-n15.c index 1a869afac..05ea79bff 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-rt-n15.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-rt-n15.c @@ -84,14 +84,14 @@ static struct gpio_button rt_n15_gpio_buttons[] __initdata = {  	{  		.desc		= "reset",  		.type		= EV_KEY, -		.code		= BTN_0, +		.code		= KEY_RESTART,  		.threshold	= 3,  		.gpio		= RT_N15_GPIO_BUTTON_RESET,  		.active_low	= 1,  	}, {  		.desc		= "wps",  		.type		= EV_KEY, -		.code		= BTN_1, +		.code		= KEY_WPS_BUTTON,  		.threshold	= 3,  		.gpio		= RT_N15_GPIO_BUTTON_WPS,  		.active_low	= 1, diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-dir-300-revb.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-dir-300-revb.c index 27fad6ad9..d1c015f88 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-dir-300-revb.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-dir-300-revb.c @@ -91,14 +91,14 @@ static struct gpio_button dir_300b_gpio_buttons[] __initdata = {  	{  		.desc		= "reset",  		.type		= EV_KEY, -		.code		= BTN_0, +		.code		= KEY_RESTART,  		.threshold	= 3,  		.gpio		= DIR_300B_GPIO_BUTTON_RESET,  		.active_low	= 1,  	}, {  		.desc		= "wps",  		.type		= EV_KEY, -		.code		= BTN_1, +		.code		= KEY_WPS_BUTTON,  		.threshold	= 3,  		.gpio		= DIR_300B_GPIO_BUTTON_WPS,  		.active_low	= 1, diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-fonera20n.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-fonera20n.c index c87bdaf3e..9de07d36b 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-fonera20n.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-fonera20n.c @@ -91,7 +91,7 @@ static struct gpio_button fonera20n_gpio_buttons[] __initdata = {  	{  		.desc		= "reset",  		.type		= EV_KEY, -		.code		= BTN_0, +		.code		= KEY_RESTART,  		.threshold	= 3,  		.gpio		= FONERA20N_GPIO_BUTTON_RESET,  		.active_low	= 1, diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-v22rw-2x2.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-v22rw-2x2.c index 812dfb4a9..8c4d18214 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-v22rw-2x2.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-v22rw-2x2.c @@ -85,14 +85,14 @@ static struct gpio_button v22rw_2x2_gpio_buttons[] __initdata = {  	{  		.desc		= "reset",  		.type		= EV_KEY, -		.code		= BTN_0, +		.code		= KEY_RESTART,  		.threshold	= 3,  		.gpio		= V22RW_2X2_GPIO_BUTTON_SWRST,  		.active_low	= 1,  	}, {  		.desc		= "wps",  		.type		= EV_KEY, -		.code		= BTN_1, +		.code		= KEY_WPS_BUTTON,  		.threshold	= 3,  		.gpio		= V22RW_2X2_GPIO_BUTTON_WPS,  		.active_low	= 1, diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-whr-g300n.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-whr-g300n.c index 4e0e810bb..a8c171c84 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-whr-g300n.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-whr-g300n.c @@ -97,14 +97,14 @@ static struct gpio_button whr_g300n_gpio_buttons[] __initdata = {  	{  		.desc		= "reset",  		.type		= EV_KEY, -		.code		= BTN_0, +		.code		= KEY_RESTART,  		.threshold	= 3,  		.gpio		= WHR_G300N_GPIO_BUTTON_RESET,  		.active_low	= 1,  	}, {  		.desc		= "aoss",  		.type		= EV_KEY, -		.code		= BTN_1, +		.code		= KEY_WPS_BUTTON,  		.threshold	= 3,  		.gpio		= WHR_G300N_GPIO_BUTTON_AOSS,  		.active_low	= 1,  | 
