The patch titled input: allow root to inject unknown scan codes has been added to the -mm tree. Its filename is input-allow-root-to-inject-unknown-scan-codes.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: input: allow root to inject unknown scan codes From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> 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 Cc: Dmitry Torokhov <dtor_core@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/input/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/input/input.c~input-allow-root-to-inject-unknown-scan-codes drivers/input/input.c --- a/drivers/input/input.c~input-allow-root-to-inject-unknown-scan-codes +++ a/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) _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are acpi-add-ibm-r60e-laptop-to-proc-idle-blacklist.patch input-allow-root-to-inject-unknown-scan-codes.patch irda-add-some-ibm-think-pads.patch 8250_pnp-add-support-for-other-wacom-tablets.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html