From: Andy Walls Date: Tue, 14 Apr 2009 00:43:31 +0000 (-0300) Subject: V4L/DVB (11494): cx18: Send correct input routing value to external audio multiplexers X-Git-Tag: v2.6.30-rc4~2^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92ab9baee3e075e4d84d9b74f6da5b047539e323;p=platform%2Fkernel%2Flinux-stable.git V4L/DVB (11494): cx18: Send correct input routing value to external audio multiplexers A late v4l2_subdev framework change accidentally sent the audio input routing value to the external multiplexer, instead of the muxer input routing value to the external multiplexer. This change corrects that error. Signed-off-by: Andy Walls Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/cx18/cx18-audio.c b/drivers/media/video/cx18/cx18-audio.c index 1519e91..7a8ad59 100644 --- a/drivers/media/video/cx18/cx18-audio.c +++ b/drivers/media/video/cx18/cx18-audio.c @@ -44,7 +44,7 @@ int cx18_audio_set_io(struct cx18 *cx) /* handle muxer chips */ v4l2_subdev_call(cx->sd_extmux, audio, s_routing, - in->audio_input, 0, 0); + (u32) in->muxer_input, 0, 0); err = cx18_call_hw_err(cx, cx->card->hw_audio_ctrl, audio, s_routing, in->audio_input, 0, 0);