diff options
author | Magnus Damm <damm@opensource.se> | 2012-01-17 20:14:07 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-01-18 10:12:56 +1000 |
commit | 2fde109c2d79e9791250a5d212c13055e9216a55 (patch) | |
tree | 29c6eccd695ba8795b5421f7fd04322df9fd7019 /arch/arm/mach-shmobile/board-kota2.c | |
parent | e2c31b3fdd48274e9deb450e21279e54dfa02ccd (diff) | |
download | linux-next-2fde109c2d79e9791250a5d212c13055e9216a55.tar.gz |
ARM: mach-shmobile: IRQ driven GPIO key support for Kota2
Now when GPIO IRQs are supported on sh73a0 modify the Kota2
board code to switch from the polled "gpio-keys-polled" driver
to the IRQ driven "gpio-keys" driver.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/board-kota2.c')
-rw-r--r-- | arch/arm/mach-shmobile/board-kota2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/board-kota2.c b/arch/arm/mach-shmobile/board-kota2.c index 857ceeec1bb0..c8e7ca23fc06 100644 --- a/arch/arm/mach-shmobile/board-kota2.c +++ b/arch/arm/mach-shmobile/board-kota2.c @@ -143,11 +143,10 @@ static struct gpio_keys_button gpio_buttons[] = { static struct gpio_keys_platform_data gpio_key_info = { .buttons = gpio_buttons, .nbuttons = ARRAY_SIZE(gpio_buttons), - .poll_interval = 250, /* polled for now */ }; static struct platform_device gpio_keys_device = { - .name = "gpio-keys-polled", /* polled for now */ + .name = "gpio-keys", .id = -1, .dev = { .platform_data = &gpio_key_info, |