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-typhoon.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-typhoon.c')
-rw-r--r-- | drivers/media/radio/radio-typhoon.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/media/radio/radio-typhoon.c b/drivers/media/radio/radio-typhoon.c index 023d6f3c751c..48b5d2bc6276 100644 --- a/drivers/media/radio/radio-typhoon.c +++ b/drivers/media/radio/radio-typhoon.c | |||
@@ -345,12 +345,7 @@ static const struct file_operations typhoon_fops = { | |||
345 | .llseek = no_llseek, | 345 | .llseek = no_llseek, |
346 | }; | 346 | }; |
347 | 347 | ||
348 | static struct video_device typhoon_radio = | 348 | static const struct v4l2_ioctl_ops typhoon_ioctl_ops = { |
349 | { | ||
350 | .owner = THIS_MODULE, | ||
351 | .name = "Typhoon Radio", | ||
352 | .type = VID_TYPE_TUNER, | ||
353 | .fops = &typhoon_fops, | ||
354 | .vidioc_querycap = vidioc_querycap, | 349 | .vidioc_querycap = vidioc_querycap, |
355 | .vidioc_g_tuner = vidioc_g_tuner, | 350 | .vidioc_g_tuner = vidioc_g_tuner, |
356 | .vidioc_s_tuner = vidioc_s_tuner, | 351 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -365,6 +360,14 @@ static struct video_device typhoon_radio = | |||
365 | .vidioc_s_ctrl = vidioc_s_ctrl, | 360 | .vidioc_s_ctrl = vidioc_s_ctrl, |
366 | }; | 361 | }; |
367 | 362 | ||
363 | static struct video_device typhoon_radio = { | ||
364 | .owner = THIS_MODULE, | ||
365 | .name = "Typhoon Radio", | ||
366 | .type = VID_TYPE_TUNER, | ||
367 | .fops = &typhoon_fops, | ||
368 | .ioctl_ops = &typhoon_ioctl_ops, | ||
369 | }; | ||
370 | |||
368 | #ifdef CONFIG_RADIO_TYPHOON_PROC_FS | 371 | #ifdef CONFIG_RADIO_TYPHOON_PROC_FS |
369 | 372 | ||
370 | static int typhoon_proc_show(struct seq_file *m, void *v) | 373 | static int typhoon_proc_show(struct seq_file *m, void *v) |