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-aimslab.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-aimslab.c')
-rw-r--r-- | drivers/media/radio/radio-aimslab.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index ec8d64704dd0..be9bd7adaf61 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c | |||
@@ -389,12 +389,7 @@ static const struct file_operations rtrack_fops = { | |||
389 | .llseek = no_llseek, | 389 | .llseek = no_llseek, |
390 | }; | 390 | }; |
391 | 391 | ||
392 | static struct video_device rtrack_radio= | 392 | static const struct v4l2_ioctl_ops rtrack_ioctl_ops = { |
393 | { | ||
394 | .owner = THIS_MODULE, | ||
395 | .name = "RadioTrack radio", | ||
396 | .type = VID_TYPE_TUNER, | ||
397 | .fops = &rtrack_fops, | ||
398 | .vidioc_querycap = vidioc_querycap, | 393 | .vidioc_querycap = vidioc_querycap, |
399 | .vidioc_g_tuner = vidioc_g_tuner, | 394 | .vidioc_g_tuner = vidioc_g_tuner, |
400 | .vidioc_s_tuner = vidioc_s_tuner, | 395 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -409,6 +404,14 @@ static struct video_device rtrack_radio= | |||
409 | .vidioc_s_ctrl = vidioc_s_ctrl, | 404 | .vidioc_s_ctrl = vidioc_s_ctrl, |
410 | }; | 405 | }; |
411 | 406 | ||
407 | static struct video_device rtrack_radio = { | ||
408 | .owner = THIS_MODULE, | ||
409 | .name = "RadioTrack radio", | ||
410 | .type = VID_TYPE_TUNER, | ||
411 | .fops = &rtrack_fops, | ||
412 | .ioctl_ops = &rtrack_ioctl_ops, | ||
413 | }; | ||
414 | |||
412 | static int __init rtrack_init(void) | 415 | static int __init rtrack_init(void) |
413 | { | 416 | { |
414 | if(io==-1) | 417 | if(io==-1) |