ALSA: wss_lib: fix opti93x capture formats limitations
authorKrzysztof Helt <[email protected]>
Thu, 31 Jul 2008 19:11:46 +0000 (21:11 +0200)
committerJaroslav Kysela <[email protected]>
Wed, 6 Aug 2008 13:40:03 +0000 (15:40 +0200)
Limit opti93x cards capture formats to only linear ones.

Signed-off-by: Krzysztof Helt <[email protected]>
Reviewed-by: Rene Herman <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
sound/isa/wss/wss_lib.c

index a5602f515f4963a86b7f9f4d0054c531c65cb30f..f2df77bd1308ca96d6bcf8d9f2769737e6d18908 100644 (file)
@@ -1495,8 +1495,10 @@ static int snd_wss_capture_open(struct snd_pcm_substream *substream)
 
        /* hardware limitation of cheap chips */
        if (chip->hardware == WSS_HW_CS4235 ||
-           chip->hardware == WSS_HW_CS4239)
-               runtime->hw.formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE;
+           chip->hardware == WSS_HW_CS4239 ||
+           chip->hardware == WSS_HW_OPTI93X)
+               runtime->hw.formats = SNDRV_PCM_FMTBIT_U8 |
+                                     SNDRV_PCM_FMTBIT_S16_LE;
 
        snd_pcm_limit_isa_dma_size(chip->dma2, &runtime->hw.buffer_bytes_max);
        snd_pcm_limit_isa_dma_size(chip->dma2, &runtime->hw.period_bytes_max);