aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/input/misc/uinput.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c
index 4eb9e4d94f46..79338f4bdecb 100644
--- a/drivers/input/misc/uinput.c
+++ b/drivers/input/misc/uinput.c
@@ -981,9 +981,15 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
981} 981}
982 982
983#ifdef CONFIG_COMPAT 983#ifdef CONFIG_COMPAT
984
985#define UI_SET_PHYS_COMPAT _IOW(UINPUT_IOCTL_BASE, 108, compat_uptr_t)
986
984static long uinput_compat_ioctl(struct file *file, 987static long uinput_compat_ioctl(struct file *file,
985 unsigned int cmd, unsigned long arg) 988 unsigned int cmd, unsigned long arg)
986{ 989{
990 if (cmd == UI_SET_PHYS_COMPAT)
991 cmd = UI_SET_PHYS;
992
987 return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg)); 993 return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
988} 994}
989#endif 995#endif