diff options
Diffstat (limited to 'drivers/media/pci/cx18/cx18-gpio.c')
-rw-r--r-- | drivers/media/pci/cx18/cx18-gpio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/media/pci/cx18/cx18-gpio.c b/drivers/media/pci/cx18/cx18-gpio.c index 5374aeb0cd22..38dc6b8f8254 100644 --- a/drivers/media/pci/cx18/cx18-gpio.c +++ b/drivers/media/pci/cx18/cx18-gpio.c | |||
@@ -180,7 +180,6 @@ static int gpiomux_s_audio_routing(struct v4l2_subdev *sd, | |||
180 | 180 | ||
181 | static const struct v4l2_subdev_core_ops gpiomux_core_ops = { | 181 | static const struct v4l2_subdev_core_ops gpiomux_core_ops = { |
182 | .log_status = gpiomux_log_status, | 182 | .log_status = gpiomux_log_status, |
183 | .s_std = gpiomux_s_std, | ||
184 | }; | 183 | }; |
185 | 184 | ||
186 | static const struct v4l2_subdev_tuner_ops gpiomux_tuner_ops = { | 185 | static const struct v4l2_subdev_tuner_ops gpiomux_tuner_ops = { |
@@ -191,10 +190,15 @@ static const struct v4l2_subdev_audio_ops gpiomux_audio_ops = { | |||
191 | .s_routing = gpiomux_s_audio_routing, | 190 | .s_routing = gpiomux_s_audio_routing, |
192 | }; | 191 | }; |
193 | 192 | ||
193 | static const struct v4l2_subdev_video_ops gpiomux_video_ops = { | ||
194 | .s_std = gpiomux_s_std, | ||
195 | }; | ||
196 | |||
194 | static const struct v4l2_subdev_ops gpiomux_ops = { | 197 | static const struct v4l2_subdev_ops gpiomux_ops = { |
195 | .core = &gpiomux_core_ops, | 198 | .core = &gpiomux_core_ops, |
196 | .tuner = &gpiomux_tuner_ops, | 199 | .tuner = &gpiomux_tuner_ops, |
197 | .audio = &gpiomux_audio_ops, | 200 | .audio = &gpiomux_audio_ops, |
201 | .video = &gpiomux_video_ops, | ||
198 | }; | 202 | }; |
199 | 203 | ||
200 | /* | 204 | /* |