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/ks0127.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/ks0127.c')
-rw-r--r-- | linux/drivers/media/video/ks0127.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/linux/drivers/media/video/ks0127.c b/linux/drivers/media/video/ks0127.c index a1b12557a..198971b75 100644 --- a/linux/drivers/media/video/ks0127.c +++ b/linux/drivers/media/video/ks0127.c @@ -658,9 +658,6 @@ static int ks0127_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_iden static const struct v4l2_subdev_core_ops ks0127_core_ops = { .g_chip_ident = ks0127_g_chip_ident, -}; - -static const struct v4l2_subdev_tuner_ops ks0127_tuner_ops = { .s_std = ks0127_s_std, }; @@ -673,7 +670,6 @@ static const struct v4l2_subdev_video_ops ks0127_video_ops = { static const struct v4l2_subdev_ops ks0127_ops = { .core = &ks0127_core_ops, - .tuner = &ks0127_tuner_ops, .video = &ks0127_video_ops, }; |