disable IMQ on 2.6.28 as well -- people should use IFB..
[openwrt.git] / target / linux / s3c24xx / patches / 0136-fix-KEY_PHONE-up-down-inversion.patch.patch
1 From 5d4a157601b55c84ffe8886411f0b84c8de3d385 Mon Sep 17 00:00:00 2001
2 From: Sean McNeil <sean@mcneil.com>
3 Date: Fri, 25 Jul 2008 23:06:08 +0100
4 Subject: [PATCH] fix-KEY_PHONE-up-down-inversion.patch
5
6 the KEY_PHONE is backwards. It returns up when pushed and down when
7 released. The following change fixes it:
8
9 Signed-off-by: Sean McNeil <sean@mcneil.com>
10 ---
11  drivers/input/keyboard/neo1973kbd.c |    2 +-
12  1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/drivers/input/keyboard/neo1973kbd.c b/drivers/input/keyboard/neo1973kbd.c
15 index d22f377..3076af3 100644
16 --- a/drivers/input/keyboard/neo1973kbd.c
17 +++ b/drivers/input/keyboard/neo1973kbd.c
18 @@ -40,7 +40,7 @@ static irqreturn_t neo1973kbd_aux_irq(int irq, void *dev_id)
19  {
20         struct neo1973kbd *neo1973kbd_data = dev_id;
21  
22 -       int key_pressed = !gpio_get_value(irq_to_gpio(irq));
23 +       int key_pressed = !!gpio_get_value(irq_to_gpio(irq));
24         input_report_key(neo1973kbd_data->input, KEY_PHONE, key_pressed);
25         input_sync(neo1973kbd_data->input);
26  
27 -- 
28 1.5.6.3
29