diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2012-08-20 15:50:13 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-08-21 01:29:40 -0400 |
commit | 53e1719f3da0f095b8db1461bd12dd79f3246b84 (patch) | |
tree | 5c4b221ccd0c779ff571afb284b80c04c4c168a8 /sound/isa | |
parent | 535b6c51fe8293c88ce919cdfc4390c67a1cb6d1 (diff) |
ALSA: snd-als100: fix suspend/resume
snd_card_als100_probe() does not set pcm field in struct snd_sb.
As a result, PCM is not suspended and applications don't know that they need
to resume the playback.
Tested with Labway A381-F20 card (ALS120).
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/als100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/als100.c b/sound/isa/als100.c index 2d67c78c9f4b..f7cdaf51512d 100644 --- a/sound/isa/als100.c +++ b/sound/isa/als100.c | |||
@@ -233,7 +233,7 @@ static int __devinit snd_card_als100_probe(int dev, | |||
233 | irq[dev], dma8[dev], dma16[dev]); | 233 | irq[dev], dma8[dev], dma16[dev]); |
234 | } | 234 | } |
235 | 235 | ||
236 | if ((error = snd_sb16dsp_pcm(chip, 0, NULL)) < 0) { | 236 | if ((error = snd_sb16dsp_pcm(chip, 0, &chip->pcm)) < 0) { |
237 | snd_card_free(card); | 237 | snd_card_free(card); |
238 | return error; | 238 | return error; |
239 | } | 239 | } |