diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-07-21 01:57:38 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-26 11:54:58 -0400 |
commit | a399810ca69d9d4bd30ab8c1678c7439e567f90b (patch) | |
tree | 32939ef77bc75c3a224d37cf4e885d7f808741bf /drivers/media/radio/radio-maxiradio.c | |
parent | b654fcdc0ea3b6e5724c9873ae062bdfe7f28efe (diff) |
V4L/DVB (8482): videodev: move all ioctl callbacks to a new v4l2_ioctl_ops struct
All ioctl callbacks are now stored in a new v4l2_ioctl_ops struct. Drivers fill in
a const struct v4l2_ioctl_ops and video_device just contains a const pointer to it.
This ensures a clean separation between the const ops struct and the non-const
video_device struct.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/radio/radio-maxiradio.c')
-rw-r--r-- | drivers/media/radio/radio-maxiradio.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/drivers/media/radio/radio-maxiradio.c b/drivers/media/radio/radio-maxiradio.c index 9e824a7d5cc4..780516daebba 100644 --- a/drivers/media/radio/radio-maxiradio.c +++ b/drivers/media/radio/radio-maxiradio.c | |||
@@ -374,13 +374,7 @@ static int vidioc_s_ctrl (struct file *file, void *priv, | |||
374 | return -EINVAL; | 374 | return -EINVAL; |
375 | } | 375 | } |
376 | 376 | ||
377 | static struct video_device maxiradio_radio = | 377 | static const struct v4l2_ioctl_ops maxiradio_ioctl_ops = { |
378 | { | ||
379 | .owner = THIS_MODULE, | ||
380 | .name = "Maxi Radio FM2000 radio", | ||
381 | .type = VID_TYPE_TUNER, | ||
382 | .fops = &maxiradio_fops, | ||
383 | |||
384 | .vidioc_querycap = vidioc_querycap, | 378 | .vidioc_querycap = vidioc_querycap, |
385 | .vidioc_g_tuner = vidioc_g_tuner, | 379 | .vidioc_g_tuner = vidioc_g_tuner, |
386 | .vidioc_s_tuner = vidioc_s_tuner, | 380 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -395,6 +389,14 @@ static struct video_device maxiradio_radio = | |||
395 | .vidioc_s_ctrl = vidioc_s_ctrl, | 389 | .vidioc_s_ctrl = vidioc_s_ctrl, |
396 | }; | 390 | }; |
397 | 391 | ||
392 | static struct video_device maxiradio_radio = { | ||
393 | .owner = THIS_MODULE, | ||
394 | .name = "Maxi Radio FM2000 radio", | ||
395 | .type = VID_TYPE_TUNER, | ||
396 | .fops = &maxiradio_fops, | ||
397 | .ioctl_ops = &maxiradio_ioctl_ops, | ||
398 | }; | ||
399 | |||
398 | static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | 400 | static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
399 | { | 401 | { |
400 | if(!request_region(pci_resource_start(pdev, 0), | 402 | if(!request_region(pci_resource_start(pdev, 0), |