[<prev] [next>] [day] [month] [year] [list]
Message-ID: <48F068F8.8080102@tremplin-utc.net>
Date: Sat, 11 Oct 2008 10:51:04 +0200
From: Eric Piel <eric.piel@...mplin-utc.net>
To: Matthew Garrett <mjg@...hat.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] HP-WMI: additional keycode (or typo)
Hello Matthew,
On my HP 2510, pressing the (i) button generates an unknown keycode:
0x213b. So here is a patch adding support for it. However, as it seems
there is already support for a similar button connected to 0x231b as
keycode, I wonder if it could be a typo in the driver? If so, let me
know and I can redo the patch.
See you,
Eric
=
HP-WMI : add another keycode
On the hp nc2510, the (i) button generates a different keycode, add it
as KEY_INFO.
Signed-off-by: Eric Piel <eric.piel@...mplin-utc.net>
---
drivers/misc/hp-wmi.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/misc/hp-wmi.c b/drivers/misc/hp-wmi.c
index 6d407c2..02329df 100644
--- a/drivers/misc/hp-wmi.c
+++ b/drivers/misc/hp-wmi.c
@@ -82,6 +82,7 @@ static struct key_entry hp_wmi_keymap[] = {
{KE_KEY, 0x03, KEY_BRIGHTNESSDOWN},
{KE_KEY, 0x20e6, KEY_PROG1},
{KE_KEY, 0x2142, KEY_MEDIA},
+ {KE_KEY, 0x213b, KEY_INFO},
{KE_KEY, 0x231b, KEY_HELP},
{KE_END, 0}
};
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists