diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-03-18 04:57:50 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 06:00:26 -0400 |
commit | 888afa15418f001896bc11f498f9348e029611bd (patch) | |
tree | 7e0bb8f9c6d8d5d86b4cbd1fa473712f8b2f7c39 /sound/pci/hda/patch_analog.c | |
parent | 117f257d7a9599ff9cb5ab7a6a10201c6294b5f1 (diff) |
[ALSA] hda-codec - keep the format verb at closing PCM streams
Keep the format verb at closing PCM streams.
Introduced snd_hda_codec_cleanup_stream() for the parcicular purpose.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_analog.c')
-rw-r--r-- | sound/pci/hda/patch_analog.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index 87db3c410a10..220784bb76a7 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c | |||
@@ -296,8 +296,7 @@ static int ad198x_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, | |||
296 | struct snd_pcm_substream *substream) | 296 | struct snd_pcm_substream *substream) |
297 | { | 297 | { |
298 | struct ad198x_spec *spec = codec->spec; | 298 | struct ad198x_spec *spec = codec->spec; |
299 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], | 299 | snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]); |
300 | 0, 0, 0); | ||
301 | return 0; | 300 | return 0; |
302 | } | 301 | } |
303 | 302 | ||
@@ -3325,8 +3324,7 @@ static int ad1984_pcm_dmic_cleanup(struct hda_pcm_stream *hinfo, | |||
3325 | struct hda_codec *codec, | 3324 | struct hda_codec *codec, |
3326 | struct snd_pcm_substream *substream) | 3325 | struct snd_pcm_substream *substream) |
3327 | { | 3326 | { |
3328 | snd_hda_codec_setup_stream(codec, 0x05 + substream->number, | 3327 | snd_hda_codec_cleanup_stream(codec, 0x05 + substream->number); |
3329 | 0, 0, 0); | ||
3330 | return 0; | 3328 | return 0; |
3331 | } | 3329 | } |
3332 | 3330 | ||