diff options
author | Richard Fitzgerald <[email protected]> | 2023-07-31 17:57:22 +0100 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2023-08-01 08:30:06 +0200 |
commit | fb78d73dde2d4d91e2372685159d67a43cf7b8f3 (patch) | |
tree | 7df3629b363c215ebe31ef9914fab9e0db6f4063 | |
parent | e5bac77b67082e59f7aceea08a30b5dc66138643 (diff) |
ALSA: hda/cs35l56: Call cs_dsp_power_down() before calling cs_dsp_remove()
In cs35l56_hda_unbind() cs_dsp_power_down() must be called to cleanup
before calling cs_dsp_remove cs_dsp_remove().
Signed-off-by: Richard Fitzgerald <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r-- | sound/pci/hda/cs35l56_hda.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/hda/cs35l56_hda.c b/sound/pci/hda/cs35l56_hda.c index 2870f82bfa45..e8c41a4a0c40 100644 --- a/sound/pci/hda/cs35l56_hda.c +++ b/sound/pci/hda/cs35l56_hda.c @@ -649,6 +649,9 @@ static void cs35l56_hda_unbind(struct device *dev, struct device *master, void * debugfs_remove_recursive(cs35l56->debugfs_root); #endif + if (cs35l56->base.fw_patched) + cs_dsp_power_down(&cs35l56->cs_dsp); + cs_dsp_remove(&cs35l56->cs_dsp); if (comps[cs35l56->index].dev == dev) |