aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-alsa.c
diff options
context:
space:
mode:
authorTrent Piepho <xyzzy@speakeasy.org>2007-08-18 21:01:40 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-10-09 22:05:59 -0300
commit5a5b3b5d4fe3acdd9fb73162023422a9ee0e56f3 (patch)
tree65be8a61da5bae5566540ae4889c9781cdf0b266 /drivers/media/video/cx88/cx88-alsa.c
parent59fd8f8d8ee9f7539758419965381bcccfa6f798 (diff)
downloadkernel_samsung_smdk4412-5a5b3b5d4fe3acdd9fb73162023422a9ee0e56f3.zip
kernel_samsung_smdk4412-5a5b3b5d4fe3acdd9fb73162023422a9ee0e56f3.tar.gz
kernel_samsung_smdk4412-5a5b3b5d4fe3acdd9fb73162023422a9ee0e56f3.tar.bz2
V4L/DVB (6067): cx88-alsa: Hardware doesn't support mono audio
channels_min should be 2, not 1. The hardware only supports stereo. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-alsa.c')
-rw-r--r--drivers/media/video/cx88/cx88-alsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-alsa.c b/drivers/media/video/cx88/cx88-alsa.c
index ecb9a74..3e293da 100644
--- a/drivers/media/video/cx88/cx88-alsa.c
+++ b/drivers/media/video/cx88/cx88-alsa.c
@@ -335,7 +335,7 @@ static struct snd_pcm_hardware snd_cx88_digital_hw = {
.rates = SNDRV_PCM_RATE_48000,
.rate_min = 48000,
.rate_max = 48000,
- .channels_min = 1,
+ .channels_min = 2,
.channels_max = 2,
.buffer_bytes_max = (2*2048),
.period_bytes_min = 2048,