Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] pvrusb2: replace .ioctl by .unlocked_ioctl

As far as I can tell pvrusb2 does its own locking, so there is
no need to use .ioctl.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

authored by

Hans Verkuil and committed by
Mauro Carvalho Chehab
ab91c611 b44b2e06

+1 -1
+1 -1
drivers/media/usb/pvrusb2/pvrusb2-v4l2.c
··· 1247 1247 .open = pvr2_v4l2_open, 1248 1248 .release = pvr2_v4l2_release, 1249 1249 .read = pvr2_v4l2_read, 1250 - .ioctl = pvr2_v4l2_ioctl, 1250 + .unlocked_ioctl = pvr2_v4l2_ioctl, 1251 1251 .poll = pvr2_v4l2_poll, 1252 1252 }; 1253 1253