diff options
Diffstat (limited to 'sys/dev/usb/usb_dev.c')
| -rw-r--r-- | sys/dev/usb/usb_dev.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/sys/dev/usb/usb_dev.c b/sys/dev/usb/usb_dev.c index 293b0c72587f..e58d6a674ec0 100644 --- a/sys/dev/usb/usb_dev.c +++ b/sys/dev/usb/usb_dev.c @@ -1231,12 +1231,14 @@ static const struct filterops usb_filtops_write = {  	.f_isfd = 1,  	.f_detach = usb_filter_detach,  	.f_event = usb_filter_write, +	.f_copy = knote_triv_copy,  };  static const struct filterops usb_filtops_read = {  	.f_isfd = 1,  	.f_detach = usb_filter_detach,  	.f_event = usb_filter_read, +	.f_copy = knote_triv_copy,  };  /* ARGSUSED */ | 
