diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-04-01 08:52:39 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2009-04-01 08:52:39 +0200 |
commit | 0811e7462ce5c70637faa77e010016680c1e971a (patch) | |
tree | c9e1df2c6703bf8dd2f5686910d3541af7d3b7e3 /linux/drivers/media/video/ivtv/ivtv-gpio.c | |
parent | 6584af2799555f05b6545f667d94f780cbb24a1c (diff) | |
download | mediapointer-dvb-s2-0811e7462ce5c70637faa77e010016680c1e971a.tar.gz mediapointer-dvb-s2-0811e7462ce5c70637faa77e010016680c1e971a.tar.bz2 |
v4l2-subdev: move s_std from tuner to core.
From: Hans Verkuil <hverkuil@xs4all.nl>
s_std didn't belong in the tuner ops. Stricly speaking it should be part of
the video ops, but it is used by audio and tuner devices as well, so it is
more efficient to make it part of the core ops.
Priority: normal
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/ivtv/ivtv-gpio.c')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-gpio.c b/linux/drivers/media/video/ivtv/ivtv-gpio.c index 3321983d8..0dd5f53b7 100644 --- a/linux/drivers/media/video/ivtv/ivtv-gpio.c +++ b/linux/drivers/media/video/ivtv/ivtv-gpio.c @@ -342,10 +342,10 @@ static const struct v4l2_subdev_core_ops subdev_core_ops = { .g_ctrl = subdev_g_ctrl, .s_ctrl = subdev_s_ctrl, .queryctrl = subdev_queryctrl, + .s_std = subdev_s_std, }; static const struct v4l2_subdev_tuner_ops subdev_tuner_ops = { - .s_std = subdev_s_std, .s_radio = subdev_s_radio, .g_tuner = subdev_g_tuner, .s_tuner = subdev_s_tuner, |