diff options
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/evdev.c | 3 | ||||
-rw-r--r-- | drivers/input/input.c | 1 | ||||
-rw-r--r-- | drivers/input/joydev.c | 1 | ||||
-rw-r--r-- | drivers/input/misc/uinput.c | 1 | ||||
-rw-r--r-- | drivers/input/mousedev.c | 1 | ||||
-rw-r--r-- | drivers/input/serio/serio_raw.c | 1 |
6 files changed, 7 insertions, 1 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index af9ee313c10b..535fea4fe67f 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c | |||
@@ -767,7 +767,8 @@ static const struct file_operations evdev_fops = { | |||
767 | .compat_ioctl = evdev_ioctl_compat, | 767 | .compat_ioctl = evdev_ioctl_compat, |
768 | #endif | 768 | #endif |
769 | .fasync = evdev_fasync, | 769 | .fasync = evdev_fasync, |
770 | .flush = evdev_flush | 770 | .flush = evdev_flush, |
771 | .llseek = no_llseek, | ||
771 | }; | 772 | }; |
772 | 773 | ||
773 | static int evdev_install_chrdev(struct evdev *evdev) | 774 | static int evdev_install_chrdev(struct evdev *evdev) |
diff --git a/drivers/input/input.c b/drivers/input/input.c index ab6982056518..7919c2537225 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
@@ -2047,6 +2047,7 @@ out: | |||
2047 | static const struct file_operations input_fops = { | 2047 | static const struct file_operations input_fops = { |
2048 | .owner = THIS_MODULE, | 2048 | .owner = THIS_MODULE, |
2049 | .open = input_open_file, | 2049 | .open = input_open_file, |
2050 | .llseek = noop_llseek, | ||
2050 | }; | 2051 | }; |
2051 | 2052 | ||
2052 | static int __init input_init(void) | 2053 | static int __init input_init(void) |
diff --git a/drivers/input/joydev.c b/drivers/input/joydev.c index 22239e988498..9d424cebfd2c 100644 --- a/drivers/input/joydev.c +++ b/drivers/input/joydev.c | |||
@@ -739,6 +739,7 @@ static const struct file_operations joydev_fops = { | |||
739 | .compat_ioctl = joydev_compat_ioctl, | 739 | .compat_ioctl = joydev_compat_ioctl, |
740 | #endif | 740 | #endif |
741 | .fasync = joydev_fasync, | 741 | .fasync = joydev_fasync, |
742 | .llseek = no_llseek, | ||
742 | }; | 743 | }; |
743 | 744 | ||
744 | static int joydev_install_chrdev(struct joydev *joydev) | 745 | static int joydev_install_chrdev(struct joydev *joydev) |
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 360698553eb5..b9410784e6a1 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c | |||
@@ -811,6 +811,7 @@ static const struct file_operations uinput_fops = { | |||
811 | #ifdef CONFIG_COMPAT | 811 | #ifdef CONFIG_COMPAT |
812 | .compat_ioctl = uinput_compat_ioctl, | 812 | .compat_ioctl = uinput_compat_ioctl, |
813 | #endif | 813 | #endif |
814 | .llseek = no_llseek, | ||
814 | }; | 815 | }; |
815 | 816 | ||
816 | static struct miscdevice uinput_misc = { | 817 | static struct miscdevice uinput_misc = { |
diff --git a/drivers/input/mousedev.c b/drivers/input/mousedev.c index d528a2dba064..31ec7265aac6 100644 --- a/drivers/input/mousedev.c +++ b/drivers/input/mousedev.c | |||
@@ -792,6 +792,7 @@ static const struct file_operations mousedev_fops = { | |||
792 | .open = mousedev_open, | 792 | .open = mousedev_open, |
793 | .release = mousedev_release, | 793 | .release = mousedev_release, |
794 | .fasync = mousedev_fasync, | 794 | .fasync = mousedev_fasync, |
795 | .llseek = noop_llseek, | ||
795 | }; | 796 | }; |
796 | 797 | ||
797 | static int mousedev_install_chrdev(struct mousedev *mousedev) | 798 | static int mousedev_install_chrdev(struct mousedev *mousedev) |
diff --git a/drivers/input/serio/serio_raw.c b/drivers/input/serio/serio_raw.c index 998664854440..cd82bb125915 100644 --- a/drivers/input/serio/serio_raw.c +++ b/drivers/input/serio/serio_raw.c | |||
@@ -243,6 +243,7 @@ static const struct file_operations serio_raw_fops = { | |||
243 | .write = serio_raw_write, | 243 | .write = serio_raw_write, |
244 | .poll = serio_raw_poll, | 244 | .poll = serio_raw_poll, |
245 | .fasync = serio_raw_fasync, | 245 | .fasync = serio_raw_fasync, |
246 | .llseek = noop_llseek, | ||
246 | }; | 247 | }; |
247 | 248 | ||
248 | 249 | ||