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-gemtek-pci.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-gemtek-pci.c')
-rw-r--r-- | drivers/media/radio/radio-gemtek-pci.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c index 2b834b95f3e7..c41b35f3b125 100644 --- a/drivers/media/radio/radio-gemtek-pci.c +++ b/drivers/media/radio/radio-gemtek-pci.c | |||
@@ -375,11 +375,7 @@ static const struct file_operations gemtek_pci_fops = { | |||
375 | .llseek = no_llseek, | 375 | .llseek = no_llseek, |
376 | }; | 376 | }; |
377 | 377 | ||
378 | static struct video_device vdev_template = { | 378 | static const struct v4l2_ioctl_ops gemtek_pci_ioctl_ops = { |
379 | .owner = THIS_MODULE, | ||
380 | .name = "Gemtek PCI Radio", | ||
381 | .type = VID_TYPE_TUNER, | ||
382 | .fops = &gemtek_pci_fops, | ||
383 | .vidioc_querycap = vidioc_querycap, | 379 | .vidioc_querycap = vidioc_querycap, |
384 | .vidioc_g_tuner = vidioc_g_tuner, | 380 | .vidioc_g_tuner = vidioc_g_tuner, |
385 | .vidioc_s_tuner = vidioc_s_tuner, | 381 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -394,6 +390,14 @@ static struct video_device vdev_template = { | |||
394 | .vidioc_s_ctrl = vidioc_s_ctrl, | 390 | .vidioc_s_ctrl = vidioc_s_ctrl, |
395 | }; | 391 | }; |
396 | 392 | ||
393 | static struct video_device vdev_template = { | ||
394 | .owner = THIS_MODULE, | ||
395 | .name = "Gemtek PCI Radio", | ||
396 | .type = VID_TYPE_TUNER, | ||
397 | .fops = &gemtek_pci_fops, | ||
398 | .ioctl_ops = &gemtek_pci_ioctl_ops, | ||
399 | }; | ||
400 | |||
397 | static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) | 401 | static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) |
398 | { | 402 | { |
399 | struct gemtek_pci_card *card; | 403 | struct gemtek_pci_card *card; |