From: Takashi Iwai Date: Tue, 26 Jun 2012 13:01:33 +0000 (+0200) Subject: ALSA: hda - Initialize caches at codec reconfiguration X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=09a6071bfe0ecf41376ad6a143508c8b2f93f52b;p=~shefty%2Frdma-dev.git ALSA: hda - Initialize caches at codec reconfiguration Better to clean up the caches for avoiding inconsistent codec state after the reconfiguration. Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 854dd0c25f8..51cb2a2e4fc 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -2335,6 +2335,8 @@ int snd_hda_codec_reset(struct hda_codec *codec) /* free only driver_pins so that init_pins + user_pins are restored */ snd_array_free(&codec->driver_pins); restore_pincfgs(codec); + snd_array_free(&codec->cvt_setups); + snd_array_free(&codec->spdif_out); codec->num_pcms = 0; codec->pcm_info = NULL; codec->preset = NULL;