[patch] input: Only generate rawmode warnings for keys [3/14]

From: Vojtech Pavlik (vojtech@suse.cz)
Date: Wed Feb 12 2003 - 06:01:19 EST


You can pull this changeset from:
        bk://kernel.bkbits.net/vojtech/input

===================================================================

ChangeSet@1.1006, 2003-02-12 10:31:13+01:00, vojtech@suse.cz
  input: Only generate rawmode warnings if the event we cannot handle
          is a real key and not just a button or something.

 keyboard.c | 3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

===================================================================

diff -Nru a/drivers/char/keyboard.c b/drivers/char/keyboard.c
--- a/drivers/char/keyboard.c Wed Feb 12 11:57:18 2003
+++ b/drivers/char/keyboard.c Wed Feb 12 11:57:18 2003
@@ -1027,7 +1027,8 @@
 
         if ((raw_mode = (kbd->kbdmode == VC_RAW)))
                 if (emulate_raw(vc, keycode, !down << 7))
- printk(KERN_WARNING "keyboard.c: can't emulate rawmode for keycode %d\n", keycode);
+ if (keycode < BTN_MISC)
+ printk(KERN_WARNING "keyboard.c: can't emulate rawmode for keycode %d\n", keycode);
 
 #ifdef CONFIG_MAGIC_SYSRQ /* Handle the SysRq Hack */
         if (keycode == KEY_SYSRQ && !rep) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Feb 15 2003 - 22:00:39 EST