aboutsummaryrefslogtreecommitdiffstats
path: root/sound/isa/sb/sb8_main.c
diff options
context:
space:
mode:
authorKrzysztof Helt <krzysztof.h1@wp.pl>2009-12-23 18:02:41 +0100
committerTakashi Iwai <tiwai@suse.de>2009-12-25 14:15:41 +0100
commit44eba3e82b35ae796826a65d8040001582adc10a (patch)
tree93f9bcd409638b1685d231dfbd7b0ce2949c20db /sound/isa/sb/sb8_main.c
parentMerge branch 'fix/misc' into topic/misc (diff)
downloadlinux-dev-44eba3e82b35ae796826a65d8040001582adc10a.tar.xz
linux-dev-44eba3e82b35ae796826a65d8040001582adc10a.zip
ALSA: jazz16: refine dma and irq selection
Narrow the dma and irq selection after the DOS driver. Add ALSA configuration description as well. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r--sound/isa/sb/sb8_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/isa/sb/sb8_main.c b/sound/isa/sb/sb8_main.c
index 3222aed5fac6..7d84c9f34dc9 100644
--- a/sound/isa/sb/sb8_main.c
+++ b/sound/isa/sb/sb8_main.c
@@ -510,7 +510,8 @@ static int snd_sb8_open(struct snd_pcm_substream *substream)
}
switch (chip->hardware) {
case SB_HW_JAZZ16:
- runtime->hw.formats |= SNDRV_PCM_FMTBIT_S16_LE;
+ if (chip->dma16 == 5 || chip->dma16 == 7)
+ runtime->hw.formats |= SNDRV_PCM_FMTBIT_S16_LE;
runtime->hw.rates |= SNDRV_PCM_RATE_8000_48000;
runtime->hw.rate_min = 4000;
runtime->hw.rate_max = 50000;