mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
changed Makefile and profiles, added patches for kernel 2.6.24
(stable-branch of Openmoko) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13613 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
From bb7abab607e71a3cc1e8a4ebfa7619d872827353 Mon Sep 17 00:00:00 2001
|
||||
From: Sean McNeil <sean@mcneil.com>
|
||||
Date: Thu, 8 May 2008 09:24:45 +0100
|
||||
Subject: [PATCH] fix-KEY_PHONE-up-down-inversion.patch
|
||||
|
||||
the KEY_PHONE is backwards. It returns up when pushed and down when
|
||||
released. The following change fixes it:
|
||||
|
||||
Signed-off-by: Sean McNeil <sean@mcneil.com>
|
||||
---
|
||||
drivers/input/keyboard/neo1973kbd.c | 2 +-
|
||||
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/drivers/input/keyboard/neo1973kbd.c b/drivers/input/keyboard/neo1973kbd.c
|
||||
index 8b9a420..868d0a7 100644
|
||||
--- a/drivers/input/keyboard/neo1973kbd.c
|
||||
+++ b/drivers/input/keyboard/neo1973kbd.c
|
||||
@@ -40,7 +40,7 @@ static irqreturn_t neo1973kbd_aux_irq(int irq, void *dev_id)
|
||||
{
|
||||
struct neo1973kbd *neo1973kbd_data = dev_id;
|
||||
|
||||
- int key_pressed = !gpio_get_value(irq_to_gpio(irq));
|
||||
+ int key_pressed = !!gpio_get_value(irq_to_gpio(irq));
|
||||
input_report_key(neo1973kbd_data->input, KEY_PHONE, key_pressed);
|
||||
input_sync(neo1973kbd_data->input);
|
||||
|
||||
--
|
||||
1.5.6.5
|
||||
|
||||
Reference in New Issue
Block a user