1 From 897d69be643b8a8616b1c912444993a54f095917 Mon Sep 17 00:00:00 2001
2 From: Holger Freyther <zecke@openmoko.org>
3 Date: Sun, 13 Apr 2008 07:25:53 +0100
4 Subject: [PATCH] Fix the FIXME, store the GPIO value for now
6 Signed-Off-by: Holger Freyther <zecke@openmoko.org>
8 drivers/input/keyboard/neo1973kbd.c | 23 +++++++++++++----------
9 1 files changed, 13 insertions(+), 10 deletions(-)
11 diff --git a/drivers/input/keyboard/neo1973kbd.c b/drivers/input/keyboard/neo1973kbd.c
12 index 30f324d..a77d8c0 100644
13 --- a/drivers/input/keyboard/neo1973kbd.c
14 +++ b/drivers/input/keyboard/neo1973kbd.c
16 #include <linux/slab.h>
18 #include <asm/hardware.h>
19 -#include <asm/arch/gta01.h>
20 #include <asm/mach-types.h>
23 struct input_dev *input;
24 unsigned int suspended;
30 static irqreturn_t neo1973kbd_aux_irq(int irq, void *dev_id)
32 struct neo1973kbd *neo1973kbd_data = dev_id;
34 - /* FIXME: use GPIO from platform_dev resources */
35 - int key_pressed = !s3c2410_gpio_getpin(GTA01_GPIO_AUX_KEY);
36 + int key_pressed = !s3c2410_gpio_getpin(neo1973kbd_data->gpio_aux);
37 input_report_key(neo1973kbd_data->input, KEY_PHONE, key_pressed);
38 input_sync(neo1973kbd_data->input);
40 @@ -47,8 +48,7 @@ static irqreturn_t neo1973kbd_hold_irq(int irq, void *dev_id)
42 struct neo1973kbd *neo1973kbd_data = dev_id;
44 - /* FIXME: use GPIO from platform_dev resources */
45 - int key_pressed = 3c2410_gpio_getpin(GTA01_GPIO_HOLD_KEY);
46 + int key_pressed = s3c2410_gpio_getpin(neo1973kbd_data->gpio_hold);
47 input_report_key(neo1973kbd_data->input, KEY_PAUSE, key_pressed);
48 input_sync(neo1973kbd_data->input);
50 @@ -59,8 +59,7 @@ static irqreturn_t neo1973kbd_headphone_irq(int irq, void *dev_id)
52 struct neo1973kbd *neo1973kbd_data = dev_id;
54 - /* FIXME: use GPIO from platform_dev resources */
55 - int key_pressed = s3c2410_gpio_getpin(GTA01_GPIO_JACK_INSERT);
56 + int key_pressed = s3c2410_gpio_getpin(neo1973kbd_data->gpio_jack);
57 input_report_switch(neo1973kbd_data->input,
58 SW_HEADPHONE_INSERT, key_pressed);
59 input_sync(neo1973kbd_data->input);
60 @@ -108,15 +107,19 @@ static int neo1973kbd_probe(struct platform_device *pdev)
61 if (pdev->resource[0].flags != 0)
64 - irq_aux = s3c2410_gpio_getirq(pdev->resource[0].start);
65 + neo1973kbd->gpio_aux = pdev->resource[0].start;
66 + neo1973kbd->gpio_hold = pdev->resource[1].start;
67 + neo1973kbd->gpio_jack = pdev->resource[2].start;
69 + irq_aux = s3c2410_gpio_getirq(neo1973kbd->gpio_aux);
73 - irq_hold = s3c2410_gpio_getirq(pdev->resource[1].start);
74 + irq_hold = s3c2410_gpio_getirq(neo1973kbd->gpio_hold);
78 - irq_jack = s3c2410_gpio_getirq(pdev->resource[2].start);
79 + irq_jack = s3c2410_gpio_getirq(neo1973kbd->gpio_jack);