diff options
author | Richard Fitzgerald <rf@opensource.wolfsonmicro.com> | 2016-04-27 15:58:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-04-27 17:21:23 +0200 |
commit | 401cf1466a59139ec1805e2171d43a32be92f89c (patch) | |
tree | dbbc9e4531550ed542a954663a8c13a8f50274dd /sound/soc/codecs/wm5110.c | |
parent | ASoC: wm_adsp: free memory when unloaded or closed (diff) | |
download | linux-401cf1466a59139ec1805e2171d43a32be92f89c.tar.xz linux-401cf1466a59139ec1805e2171d43a32be92f89c.zip |
ASoC: arizona: call wm_adsp2_remove when codec driver is removed
Ensure that the wm_adsp driver cleans up when the codec driver
is removed.
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm5110.c')
-rw-r--r-- | sound/soc/codecs/wm5110.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm5110.c b/sound/soc/codecs/wm5110.c index 83ba70fe16e6..dd87af1ffa23 100644 --- a/sound/soc/codecs/wm5110.c +++ b/sound/soc/codecs/wm5110.c @@ -2435,10 +2435,16 @@ static int wm5110_probe(struct platform_device *pdev) static int wm5110_remove(struct platform_device *pdev) { + struct wm5110_priv *wm5110 = platform_get_drvdata(pdev); + int i; + snd_soc_unregister_platform(&pdev->dev); snd_soc_unregister_codec(&pdev->dev); pm_runtime_disable(&pdev->dev); + for (i = 0; i < WM5110_NUM_ADSP; i++) + wm_adsp2_remove(&wm5110->core.adsp[i]); + return 0; } |