Hi Mauro, Today's linux-next merge of the v4l-dvb tree got a conflict in drivers/input/evdev.c between commit 58b939959d228681208ba997595411fddc860849 ("Input: scancode in get/set_keycodes should be unsigned") from Linus' tree and commit edeada2cde748860846784cf3e5518d7c7c51ca2 ("V4L/DVB: input: Add support for EVIO[CS]GKEYCODEBIG") from the v4l-dvb tree. Just context changes. I fixed it up (see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/input/evdev.c index 2ee6c7a,1730b5b..0000000 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c @@@ -515,7 -513,9 +515,9 @@@ static long evdev_do_ioctl(struct file struct input_absinfo abs; struct ff_effect effect; int __user *ip = (int __user *)p; + struct keycode_table_entry kt, *kt_p = p; + char scancode[16]; - int i, t, u, v; + unsigned int i, t, u, v; int error; switch (cmd) { -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html