aboutsummaryrefslogtreecommitdiff
path: root/drivers/input/keyboard/neo1973kbd.c
diff options
context:
space:
mode:
authorHolger Freyther <zecke@openmoko.org>2008-11-19 17:09:36 +0000
committerAndy Green <agreen@pads.home.warmcat.com>2008-11-19 17:09:36 +0000
commite410f3b085a46cfe399791e5fc588a569edab3ba (patch)
tree0584888ae7f4329b5427018280458e8ec53b68a7 /drivers/input/keyboard/neo1973kbd.c
parentf87838a1d355a85a9609682102b7b58e6b14dbda (diff)
Fix the FIXME, store the GPIO value for now
Signed-Off-by: Holger Freyther <zecke@openmoko.org>
Diffstat (limited to 'drivers/input/keyboard/neo1973kbd.c')
-rw-r--r--drivers/input/keyboard/neo1973kbd.c23
1 files changed, 13 insertions, 10 deletions
diff --git a/drivers/input/keyboard/neo1973kbd.c b/drivers/input/keyboard/neo1973kbd.c
index 30f324d939e..a77d8c0cf18 100644
--- a/drivers/input/keyboard/neo1973kbd.c
+++ b/drivers/input/keyboard/neo1973kbd.c
@@ -23,20 +23,21 @@
#include <linux/slab.h>
#include <asm/hardware.h>
-#include <asm/arch/gta01.h>
#include <asm/mach-types.h>
struct neo1973kbd {
struct input_dev *input;
unsigned int suspended;
+ int gpio_aux;
+ int gpio_hold;
+ int gpio_jack;
};
static irqreturn_t neo1973kbd_aux_irq(int irq, void *dev_id)
{
struct neo1973kbd *neo1973kbd_data = dev_id;
- /* FIXME: use GPIO from platform_dev resources */
- int key_pressed = !s3c2410_gpio_getpin(GTA01_GPIO_AUX_KEY);
+ int key_pressed = !s3c2410_gpio_getpin(neo1973kbd_data->gpio_aux);
input_report_key(neo1973kbd_data->input, KEY_PHONE, key_pressed);
input_sync(neo1973kbd_data->input);
@@ -47,8 +48,7 @@ static irqreturn_t neo1973kbd_hold_irq(int irq, void *dev_id)
{
struct neo1973kbd *neo1973kbd_data = dev_id;
- /* FIXME: use GPIO from platform_dev resources */
- int key_pressed = 3c2410_gpio_getpin(GTA01_GPIO_HOLD_KEY);
+ int key_pressed = s3c2410_gpio_getpin(neo1973kbd_data->gpio_hold);
input_report_key(neo1973kbd_data->input, KEY_PAUSE, key_pressed);
input_sync(neo1973kbd_data->input);
@@ -59,8 +59,7 @@ static irqreturn_t neo1973kbd_headphone_irq(int irq, void *dev_id)
{
struct neo1973kbd *neo1973kbd_data = dev_id;
- /* FIXME: use GPIO from platform_dev resources */
- int key_pressed = s3c2410_gpio_getpin(GTA01_GPIO_JACK_INSERT);
+ int key_pressed = s3c2410_gpio_getpin(neo1973kbd_data->gpio_jack);
input_report_switch(neo1973kbd_data->input,
SW_HEADPHONE_INSERT, key_pressed);
input_sync(neo1973kbd_data->input);
@@ -108,15 +107,19 @@ static int neo1973kbd_probe(struct platform_device *pdev)
if (pdev->resource[0].flags != 0)
return -EINVAL;
- irq_aux = s3c2410_gpio_getirq(pdev->resource[0].start);
+ neo1973kbd->gpio_aux = pdev->resource[0].start;
+ neo1973kbd->gpio_hold = pdev->resource[1].start;
+ neo1973kbd->gpio_jack = pdev->resource[2].start;
+
+ irq_aux = s3c2410_gpio_getirq(neo1973kbd->gpio_aux);
if (irq_aux < 0)
return -EINVAL;
- irq_hold = s3c2410_gpio_getirq(pdev->resource[1].start);
+ irq_hold = s3c2410_gpio_getirq(neo1973kbd->gpio_hold);
if (irq_hold < 0)
return -EINVAL;
- irq_jack = s3c2410_gpio_getirq(pdev->resource[2].start);
+ irq_jack = s3c2410_gpio_getirq(neo1973kbd->gpio_jack);
if (irq_jack < 0)
return -EINVAL;