diff options
Diffstat (limited to 'sys/dev/evdev')
| -rw-r--r-- | sys/dev/evdev/cdev.c | 1 | ||||
| -rw-r--r-- | sys/dev/evdev/uinput.c | 1 | 
2 files changed, 2 insertions, 0 deletions
| diff --git a/sys/dev/evdev/cdev.c b/sys/dev/evdev/cdev.c index 9fe1299a0937..dd4115cdfc71 100644 --- a/sys/dev/evdev/cdev.c +++ b/sys/dev/evdev/cdev.c @@ -96,6 +96,7 @@ static const struct filterops evdev_cdev_filterops = {  	.f_attach = NULL,  	.f_detach = evdev_kqdetach,  	.f_event = evdev_kqread, +	.f_copy = knote_triv_copy,  };  static int diff --git a/sys/dev/evdev/uinput.c b/sys/dev/evdev/uinput.c index 9ac9fee8a157..76a530479c02 100644 --- a/sys/dev/evdev/uinput.c +++ b/sys/dev/evdev/uinput.c @@ -104,6 +104,7 @@ static const struct filterops uinput_filterops = {  	.f_attach = NULL,  	.f_detach = uinput_kqdetach,  	.f_event = uinput_kqread, +	.f_copy = knote_triv_copy,  };  struct uinput_cdev_state | 
