diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-04-02 10:26:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-04-06 20:44:27 -0400 |
commit | 5325b4272a53b43f55b82cc369c310c2fcacdca1 (patch) | |
tree | f2a1491de3d05901152e0e271c0cb5ce381884c2 /drivers/media/video/cx231xx | |
parent | c0ff29150d37615ac703802ab3edc775fd402491 (diff) |
V4L/DVB (11380): v4l2-subdev: change s_routing prototype
It is no longer needed to use a struct pointer as argument, since v4l2_subdev
doesn't require that ioctl-like approach anymore. Instead just pass the input,
output and config (new!) arguments directly.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx231xx')
-rw-r--r-- | drivers/media/video/cx231xx/cx231xx-cards.c | 5 | ||||
-rw-r--r-- | drivers/media/video/cx231xx/cx231xx-video.c | 7 |
2 files changed, 2 insertions, 10 deletions
diff --git a/drivers/media/video/cx231xx/cx231xx-cards.c b/drivers/media/video/cx231xx/cx231xx-cards.c index f209fe14f829..c8a32b1b5381 100644 --- a/drivers/media/video/cx231xx/cx231xx-cards.c +++ b/drivers/media/video/cx231xx/cx231xx-cards.c | |||
@@ -357,10 +357,7 @@ int cx231xx_config(struct cx231xx *dev) | |||
357 | */ | 357 | */ |
358 | void cx231xx_config_i2c(struct cx231xx *dev) | 358 | void cx231xx_config_i2c(struct cx231xx *dev) |
359 | { | 359 | { |
360 | struct v4l2_routing route; | 360 | /* u32 input = INPUT(dev->video_input)->vmux; */ |
361 | |||
362 | route.input = INPUT(dev->video_input)->vmux; | ||
363 | route.output = 0; | ||
364 | 361 | ||
365 | call_all(dev, video, s_stream, 1); | 362 | call_all(dev, video, s_stream, 1); |
366 | } | 363 | } |
diff --git a/drivers/media/video/cx231xx/cx231xx-video.c b/drivers/media/video/cx231xx/cx231xx-video.c index 0645703e6f9c..a23ae73fe634 100644 --- a/drivers/media/video/cx231xx/cx231xx-video.c +++ b/drivers/media/video/cx231xx/cx231xx-video.c | |||
@@ -820,17 +820,12 @@ static struct videobuf_queue_ops cx231xx_video_qops = { | |||
820 | 820 | ||
821 | void video_mux(struct cx231xx *dev, int index) | 821 | void video_mux(struct cx231xx *dev, int index) |
822 | { | 822 | { |
823 | |||
824 | struct v4l2_routing route; | ||
825 | |||
826 | route.input = INPUT(index)->vmux; | ||
827 | route.output = 0; | ||
828 | dev->video_input = index; | 823 | dev->video_input = index; |
829 | dev->ctl_ainput = INPUT(index)->amux; | 824 | dev->ctl_ainput = INPUT(index)->amux; |
830 | 825 | ||
831 | cx231xx_set_video_input_mux(dev, index); | 826 | cx231xx_set_video_input_mux(dev, index); |
832 | 827 | ||
833 | cx25840_call(dev, video, s_routing, &route); | 828 | cx25840_call(dev, video, s_routing, INPUT(index)->vmux, 0, 0); |
834 | 829 | ||
835 | cx231xx_set_audio_input(dev, dev->ctl_ainput); | 830 | cx231xx_set_audio_input(dev, dev->ctl_ainput); |
836 | 831 | ||