From: viro@ZenIV.linux.org.uk Date: Fri, 9 Sep 2005 19:29:12 +0000 (+0100) Subject: [PATCH] trivial __user annotations (evdev) X-Git-Tag: v2.6.16.28-rc1~4044 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=01703597ead8194b46932ba2bcda897e872e91e0;p=karo-tx-linux.git [PATCH] trivial __user annotations (evdev) Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index 19c14c4beb44..60b696e9336b 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c @@ -509,7 +509,7 @@ do { \ int len = NBITS_COMPAT((max)) * sizeof(compat_long_t); \ if (len > _IOC_SIZE(cmd)) len = _IOC_SIZE(cmd); \ for (i = 0; i < len / sizeof(compat_long_t); i++) \ - if (copy_to_user((compat_long_t*) p + i, \ + if (copy_to_user((compat_long_t __user *) p + i, \ (compat_long_t*) (bit) + i + 1 - ((i % 2) << 1), \ sizeof(compat_long_t))) \ return -EFAULT; \