summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-02-11 19:37:06 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-02-11 19:37:06 +0000
commitd33e1ea7fdbff03a730162b0b830f147595bb390 (patch)
tree147c75003956329106f56ca700231e0c1a4d5379 /target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c
parent1e4941a025ba9490d841039a689ad1670f30111c (diff)
ramips: use gpio-keys-polled instead of gpio-buttons
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30461 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c')
-rw-r--r--target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c
index e3273ba70..fa046df9f 100644
--- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c
+++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-mofi3500-3gn.c
@@ -31,7 +31,8 @@
#define MOFI3500_3GN_GPIO_BUTTON_CONNECT 7
#define MOFI3500_3GN_GPIO_BUTTON_WPS 0
-#define MOFI3500_3GN_BUTTONS_POLL_INTERVAL 20
+#define MOFI3500_3GN_KEYS_POLL_INTERVAL 20
+#define MOFI3500_3GN_KEYS_DEBOUNCE_INTERVAL (3 * MOFI3500_3GN_KEYS_POLL_INTERVAL)
static struct mtd_partition mofi3500_3gn_partitions[] = {
{
@@ -89,26 +90,26 @@ static struct gpio_led mofi3500_3gn_leds_gpio[] __initdata = {
}
};
-static struct gpio_button mofi3500_3gn_gpio_buttons[] __initdata = {
+static struct gpio_keys_button mofi3500_3gn_gpio_buttons[] __initdata = {
{
.desc = "reset",
.type = EV_KEY,
.code = KEY_RESTART,
- .threshold = 3,
+ .debounce_interval = MOFI3500_3GN_KEYS_DEBOUNCE_INTERVAL,
.gpio = MOFI3500_3GN_GPIO_BUTTON_RESET,
.active_low = 1,
}, {
.desc = "connect",
.type = EV_KEY,
.code = KEY_CONNECT,
- .threshold = 3,
+ .debounce_interval = MOFI3500_3GN_KEYS_DEBOUNCE_INTERVAL,
.gpio = MOFI3500_3GN_GPIO_BUTTON_CONNECT,
.active_low = 1,
}, {
.desc = "wps",
.type = EV_KEY,
.code = KEY_WPS_BUTTON,
- .threshold = 3,
+ .debounce_interval = MOFI3500_3GN_KEYS_DEBOUNCE_INTERVAL,
.gpio = MOFI3500_3GN_GPIO_BUTTON_WPS,
.active_low = 1,
}
@@ -127,7 +128,7 @@ static void __init mofi3500_3gn_init(void)
rt305x_register_ethernet();
ramips_register_gpio_leds(-1, ARRAY_SIZE(mofi3500_3gn_leds_gpio),
mofi3500_3gn_leds_gpio);
- ramips_register_gpio_buttons(-1, MOFI3500_3GN_BUTTONS_POLL_INTERVAL,
+ ramips_register_gpio_buttons(-1, MOFI3500_3GN_KEYS_POLL_INTERVAL,
ARRAY_SIZE(mofi3500_3gn_gpio_buttons),
mofi3500_3gn_gpio_buttons);
rt305x_register_wifi();