diff options
Diffstat (limited to 'drivers/media/video/adv7170.c')
-rw-r--r-- | drivers/media/video/adv7170.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/drivers/media/video/adv7170.c b/drivers/media/video/adv7170.c index 873c30a41bd7..97b003449c91 100644 --- a/drivers/media/video/adv7170.c +++ b/drivers/media/video/adv7170.c | |||
@@ -219,18 +219,19 @@ static int adv7170_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std) | |||
219 | return 0; | 219 | return 0; |
220 | } | 220 | } |
221 | 221 | ||
222 | static int adv7170_s_routing(struct v4l2_subdev *sd, const struct v4l2_routing *route) | 222 | static int adv7170_s_routing(struct v4l2_subdev *sd, |
223 | u32 input, u32 output, u32 config) | ||
223 | { | 224 | { |
224 | struct adv7170 *encoder = to_adv7170(sd); | 225 | struct adv7170 *encoder = to_adv7170(sd); |
225 | 226 | ||
226 | /* RJ: route->input = 0: input is from decoder | 227 | /* RJ: input = 0: input is from decoder |
227 | route->input = 1: input is from ZR36060 | 228 | input = 1: input is from ZR36060 |
228 | route->input = 2: color bar */ | 229 | input = 2: color bar */ |
229 | 230 | ||
230 | v4l2_dbg(1, debug, sd, "set input from %s\n", | 231 | v4l2_dbg(1, debug, sd, "set input from %s\n", |
231 | route->input == 0 ? "decoder" : "ZR36060"); | 232 | input == 0 ? "decoder" : "ZR36060"); |
232 | 233 | ||
233 | switch (route->input) { | 234 | switch (input) { |
234 | case 0: | 235 | case 0: |
235 | adv7170_write(sd, 0x01, 0x20); | 236 | adv7170_write(sd, 0x01, 0x20); |
236 | adv7170_write(sd, 0x08, TR1CAPT); /* TR1 */ | 237 | adv7170_write(sd, 0x08, TR1CAPT); /* TR1 */ |
@@ -250,11 +251,11 @@ static int adv7170_s_routing(struct v4l2_subdev *sd, const struct v4l2_routing * | |||
250 | break; | 251 | break; |
251 | 252 | ||
252 | default: | 253 | default: |
253 | v4l2_dbg(1, debug, sd, "illegal input: %d\n", route->input); | 254 | v4l2_dbg(1, debug, sd, "illegal input: %d\n", input); |
254 | return -EINVAL; | 255 | return -EINVAL; |
255 | } | 256 | } |
256 | v4l2_dbg(1, debug, sd, "switched to %s\n", inputs[route->input]); | 257 | v4l2_dbg(1, debug, sd, "switched to %s\n", inputs[input]); |
257 | encoder->input = route->input; | 258 | encoder->input = input; |
258 | return 0; | 259 | return 0; |
259 | } | 260 | } |
260 | 261 | ||