diff options
author | Mark Brown <broonie@kernel.org> | 2015-11-25 17:57:47 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-11-25 17:57:47 +0000 |
commit | 98409bfd01ace615c841fa8d42c5e248cdfb8ec9 (patch) | |
tree | 1874f61db490eda3bd29bc5e8e188df3e787a689 /sound/soc/soc-dapm.c | |
parent | dfc956d8ee0b84eaba29434b7e5699bd81fed684 (diff) | |
parent | 1a7aaa58ec7aaa389cd6b200809908ec472d316b (diff) | |
download | linux-98409bfd01ace615c841fa8d42c5e248cdfb8ec9.tar.bz2 |
Merge remote-tracking branch 'asoc/fix/dapm' into asoc-linus
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r-- | sound/soc/soc-dapm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 016eba10b1ec..7d009428934a 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -2293,6 +2293,12 @@ void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w) kfree(w); } +void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm) +{ + dapm->path_sink_cache.widget = NULL; + dapm->path_source_cache.widget = NULL; +} + /* free all dapm widgets and resources */ static void dapm_free_widgets(struct snd_soc_dapm_context *dapm) { @@ -2303,6 +2309,7 @@ static void dapm_free_widgets(struct snd_soc_dapm_context *dapm) continue; snd_soc_dapm_free_widget(w); } + snd_soc_dapm_reset_cache(dapm); } static struct snd_soc_dapm_widget *dapm_find_widget( |