summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/saa717x.c
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2009-04-01 08:52:39 +0200
committerHans Verkuil <hverkuil@xs4all.nl>2009-04-01 08:52:39 +0200
commit0811e7462ce5c70637faa77e010016680c1e971a (patch)
treec9e1df2c6703bf8dd2f5686910d3541af7d3b7e3 /linux/drivers/media/video/saa717x.c
parent6584af2799555f05b6545f667d94f780cbb24a1c (diff)
downloadmediapointer-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/saa717x.c')
-rw-r--r--linux/drivers/media/video/saa717x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/saa717x.c b/linux/drivers/media/video/saa717x.c
index ae8fcde9d..1274adeeb 100644
--- a/linux/drivers/media/video/saa717x.c
+++ b/linux/drivers/media/video/saa717x.c
@@ -1396,12 +1396,12 @@ static const struct v4l2_subdev_core_ops saa717x_core_ops = {
.queryctrl = saa717x_queryctrl,
.g_ctrl = saa717x_g_ctrl,
.s_ctrl = saa717x_s_ctrl,
+ .s_std = saa717x_s_std,
};
static const struct v4l2_subdev_tuner_ops saa717x_tuner_ops = {
.g_tuner = saa717x_g_tuner,
.s_tuner = saa717x_s_tuner,
- .s_std = saa717x_s_std,
.s_radio = saa717x_s_radio,
};