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 c908c5f83645..51330363c0eb 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c | |||
@@ -761,7 +761,8 @@ static const struct file_operations evdev_fops = { | |||
761 | .compat_ioctl = evdev_ioctl_compat, | 761 | .compat_ioctl = evdev_ioctl_compat, |
762 | #endif | 762 | #endif |
763 | .fasync = evdev_fasync, | 763 | .fasync = evdev_fasync, |
764 | .flush = evdev_flush | 764 | .flush = evdev_flush, |
765 | .llseek = no_llseek, | ||
765 | }; | 766 | }; |
766 | 767 | ||
767 | static int evdev_install_chrdev(struct evdev *evdev) | 768 | 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 d85bd8a7967d..502b2f73b434 100644 --- a/drivers/input/joydev.c +++ b/drivers/input/joydev.c | |||
@@ -736,6 +736,7 @@ static const struct file_operations joydev_fops = { | |||
736 | .compat_ioctl = joydev_compat_ioctl, | 736 | .compat_ioctl = joydev_compat_ioctl, |
737 | #endif | 737 | #endif |
738 | .fasync = joydev_fasync, | 738 | .fasync = joydev_fasync, |
739 | .llseek = no_llseek, | ||
739 | }; | 740 | }; |
740 | 741 | ||
741 | static int joydev_install_chrdev(struct joydev *joydev) | 742 | static int joydev_install_chrdev(struct joydev *joydev) |
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 0d4266a533a5..2771ea778d34 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c | |||
@@ -804,6 +804,7 @@ static const struct file_operations uinput_fops = { | |||
804 | #ifdef CONFIG_COMPAT | 804 | #ifdef CONFIG_COMPAT |
805 | .compat_ioctl = uinput_compat_ioctl, | 805 | .compat_ioctl = uinput_compat_ioctl, |
806 | #endif | 806 | #endif |
807 | .llseek = no_llseek, | ||
807 | }; | 808 | }; |
808 | 809 | ||
809 | static struct miscdevice uinput_misc = { | 810 | 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 | ||