diff options
author | Matti Aaltonen <matti.j.aaltonen@nokia.com> | 2011-01-04 06:29:37 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-01-19 08:45:47 -0500 |
commit | 34b8fc8e683cbcbbe47806260ef5dc505915b45f (patch) | |
tree | fcfda6fb92c28256b761b0e9a5ca92a03991d33d /drivers/media/radio/radio-wl1273.c | |
parent | a3bc5e3304c9ba8e7504597026d9ca93784d1239 (diff) |
[media] V4L2: WL1273 FM Radio: Replace ioctl with unlocked_ioctl
Use unlocked_ioctl in v4l2_file_operations. The locking is
already in place.
Signed-off-by: Matti J. Aaltonen <matti.j.aaltonen@nokia.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/radio-wl1273.c')
-rw-r--r-- | drivers/media/radio/radio-wl1273.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-wl1273.c b/drivers/media/radio/radio-wl1273.c index dd6bd364efa0..7ecc8e657663 100644 --- a/drivers/media/radio/radio-wl1273.c +++ b/drivers/media/radio/radio-wl1273.c | |||
@@ -1407,7 +1407,7 @@ static const struct v4l2_file_operations wl1273_fops = { | |||
1407 | .read = wl1273_fm_fops_read, | 1407 | .read = wl1273_fm_fops_read, |
1408 | .write = wl1273_fm_fops_write, | 1408 | .write = wl1273_fm_fops_write, |
1409 | .poll = wl1273_fm_fops_poll, | 1409 | .poll = wl1273_fm_fops_poll, |
1410 | .ioctl = video_ioctl2, | 1410 | .unlocked_ioctl = video_ioctl2, |
1411 | .open = wl1273_fm_fops_open, | 1411 | .open = wl1273_fm_fops_open, |
1412 | .release = wl1273_fm_fops_release, | 1412 | .release = wl1273_fm_fops_release, |
1413 | }; | 1413 | }; |