Skip to content

Commit

Permalink
V4L/DVB (11494): cx18: Send correct input routing value to external a…
Browse files Browse the repository at this point in the history
…udio 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 <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Andy Walls authored and Mauro Carvalho Chehab committed Apr 29, 2009
1 parent 27b1833 commit 92ab9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/cx18/cx18-audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 92ab9ba

Please sign in to comment.