linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] make 2.4 shut up about "can't emulate rawmode for keycode 272" with logitech cordless mice
@ 2003-07-25  7:09 Pekka Pietikainen
  2003-07-25 19:38 ` Marcelo Tosatti
  0 siblings, 1 reply; 2+ messages in thread
From: Pekka Pietikainen @ 2003-07-25  7:09 UTC (permalink / raw)
  To: marcelo; +Cc: linux-kernel

Hi

Could you please apply this patch to 2.4. It fixes a very annoying problem
with logitech wireless keyboard/mouse combinations. Every time a 
mouse button is pressed the message 

keyboard.c: can't emulate rawmode for keycode 272

appears on the console, which is somewhat annoying especially if you want
to use gpm. For 2.5 this has been fixed by the patch in
http://www.cs.helsinki.fi/linux/linux-kernel/2003-06/0754.html,
Here's a similar patch for 2.4, which fixes the problem for me.

--- linux/drivers/input/keybdev.c.orig	2003-05-31 14:23:10.000000000 +0300
+++ linux/drivers/input/keybdev.c	2003-05-31 14:23:58.000000000 +0300
@@ -172,7 +172,8 @@
 	if (type != EV_KEY) return;
 
 	if (emulate_raw(code, down))
-		printk(KERN_WARNING "keyboard.c: can't emulate rawmode for keycode %d\n", code);
+		if(code < BTN_MISC)
+			printk(KERN_WARNING "keybdev.c: can't emulate rawmode for keycode %d\n", code);
 
 	tasklet_schedule(&keyboard_tasklet);
 }


-- 
Pekka Pietikainen

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-07-25 19:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-25  7:09 [PATCH] make 2.4 shut up about "can't emulate rawmode for keycode 272" with logitech cordless mice Pekka Pietikainen
2003-07-25 19:38 ` Marcelo Tosatti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).