[Ubuntu PATCH] input: allow root to inject unknown scan codes

From: Randy Dunlap
Date: Wed Jun 21 2006 - 01:30:08 EST


Allow root to inject unknown scan codes for input device.

http://www.kernel.org/git/?p=linux/kernel/git/bcollins/ubuntu-dapper.git;a=commitdiff;h=250bc863956a93a8eab7991b0dc7f040eb5d25cc


---
drivers/input/input.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2617-pv.orig/drivers/input/input.c
+++ linux-2617-pv/drivers/input/input.c
@@ -75,7 +75,7 @@ void input_event(struct input_dev *dev,

case EV_KEY:

- if (code > KEY_MAX || !test_bit(code, dev->keybit) || !!test_bit(code, dev->key) == value)
+ if (code > KEY_MAX || !!test_bit(code, dev->key) == value)
return;

if (value == 2)



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/