summaryrefslogtreecommitdiffstats
path: root/sound/soc/intel/skylake/skl-topology.c
diff options
context:
space:
mode:
authorJeeja KP2017-03-24 18:40:33 +0100
committerMark Brown2017-03-29 13:53:43 +0200
commit473a4d516cfe6d0668cf7223aa3002ae8367349b (patch)
tree9ac233231371be3f58664b79c9de02a501e8a361 /sound/soc/intel/skylake/skl-topology.c
parentASoC: Intel: Skylake: Fix DMA position reporting for capture stream (diff)
downloadkernel-qcow2-linux-473a4d516cfe6d0668cf7223aa3002ae8367349b.tar.gz
kernel-qcow2-linux-473a4d516cfe6d0668cf7223aa3002ae8367349b.tar.xz
kernel-qcow2-linux-473a4d516cfe6d0668cf7223aa3002ae8367349b.zip
ASoC: Intel: Skylake: Fix module state after unbind and delete
When DSP module is unbound, the module state needs to be in INIT_DONE state instead of UNINT. Also the state needs to be set to UNINIT after module is deleted from DSP pipeline. So, set the module state to INIT_DONE after unbind and then UNINIT after module is deleted. Signed-off-by: Jeeja KP <jeeja.kp@intel.com> Acked-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-topology.c')
-rw-r--r--sound/soc/intel/skylake/skl-topology.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c
index 8bd5ded98cec..e960d9f761b9 100644
--- a/sound/soc/intel/skylake/skl-topology.c
+++ b/sound/soc/intel/skylake/skl-topology.c
@@ -1037,6 +1037,11 @@ static int skl_tplg_mixer_dapm_post_pmd_event(struct snd_soc_dapm_widget *w,
skl_delete_pipe(ctx, mconfig->pipe);
+ list_for_each_entry(w_module, &s_pipe->w_list, node) {
+ src_module = w_module->w->priv;
+ src_module->m_state = SKL_MODULE_UNINIT;
+ }
+
return skl_tplg_unload_pipe_modules(ctx, s_pipe);
}