* [PATCH 2.6] evdev_ioctl does not report EV_MSC capabilities
@ 2003-08-27 6:57 Dmitry Torokhov
0 siblings, 0 replies; only message in thread
From: Dmitry Torokhov @ 2003-08-27 6:57 UTC (permalink / raw)
To: linux-kernel; +Cc: Vojtech Pavlik
While working on my GPM patches found out that EV_MSC was forgotten...
Dmitry
--- linux-2.6.0-test4/drivers/input/evdev.c.orig 2003-08-26 10:25:48.000000000 -0500
+++ linux-2.6.0-test4/drivers/input/evdev.c 2003-08-26 10:27:38.000000000 -0500
@@ -305,6 +305,7 @@
case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
case EV_REL: bits = dev->relbit; len = REL_MAX; break;
case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
+ case EV_MSC: bits = dev->mscbit; len = MSC_MAX; break;
case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
case EV_FF: bits = dev->ffbit; len = FF_MAX; break;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-08-27 6:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-27 6:57 [PATCH 2.6] evdev_ioctl does not report EV_MSC capabilities Dmitry Torokhov
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.