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-sf16fmi.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-sf16fmi.c')
-rw-r--r-- | drivers/media/radio/radio-sf16fmi.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/media/radio/radio-sf16fmi.c b/drivers/media/radio/radio-sf16fmi.c index bb8b1c9107b1..75b68a024541 100644 --- a/drivers/media/radio/radio-sf16fmi.c +++ b/drivers/media/radio/radio-sf16fmi.c | |||
@@ -295,12 +295,7 @@ static const struct file_operations fmi_fops = { | |||
295 | .llseek = no_llseek, | 295 | .llseek = no_llseek, |
296 | }; | 296 | }; |
297 | 297 | ||
298 | static struct video_device fmi_radio= | 298 | static const struct v4l2_ioctl_ops fmi_ioctl_ops = { |
299 | { | ||
300 | .owner = THIS_MODULE, | ||
301 | .name = "SF16FMx radio", | ||
302 | .type = VID_TYPE_TUNER, | ||
303 | .fops = &fmi_fops, | ||
304 | .vidioc_querycap = vidioc_querycap, | 299 | .vidioc_querycap = vidioc_querycap, |
305 | .vidioc_g_tuner = vidioc_g_tuner, | 300 | .vidioc_g_tuner = vidioc_g_tuner, |
306 | .vidioc_s_tuner = vidioc_s_tuner, | 301 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -315,6 +310,14 @@ static struct video_device fmi_radio= | |||
315 | .vidioc_s_ctrl = vidioc_s_ctrl, | 310 | .vidioc_s_ctrl = vidioc_s_ctrl, |
316 | }; | 311 | }; |
317 | 312 | ||
313 | static struct video_device fmi_radio = { | ||
314 | .owner = THIS_MODULE, | ||
315 | .name = "SF16FMx radio", | ||
316 | .type = VID_TYPE_TUNER, | ||
317 | .fops = &fmi_fops, | ||
318 | .ioctl_ops = &fmi_ioctl_ops, | ||
319 | }; | ||
320 | |||
318 | /* ladis: this is my card. does any other types exist? */ | 321 | /* ladis: this is my card. does any other types exist? */ |
319 | static struct isapnp_device_id id_table[] __devinitdata = { | 322 | static struct isapnp_device_id id_table[] __devinitdata = { |
320 | { ISAPNP_ANY_ID, ISAPNP_ANY_ID, | 323 | { ISAPNP_ANY_ID, ISAPNP_ANY_ID, |