diff mbox

ASoC: wm5110: Unregister compressed platform when driver is removed

Message ID 1453387272-3674-1-git-send-email-rf@opensource.wolfsonmicro.com (mailing list archive)
State Accepted
Commit f5ede8dcc3ec1fe5344f0d30717931a44e630631
Headers show

Commit Message

Richard Fitzgerald Jan. 21, 2016, 2:41 p.m. UTC
The driver was not unregistering the compressed platform in
wm5110_remove(). If the codec is built as a module, this would
lead to a NULL pointer deref if the module was unloaded and then
re-probed.

Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
---
 sound/soc/codecs/wm5110.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/sound/soc/codecs/wm5110.c b/sound/soc/codecs/wm5110.c
index 6088d30..97c0f1e 100644
--- a/sound/soc/codecs/wm5110.c
+++ b/sound/soc/codecs/wm5110.c
@@ -2382,6 +2382,7 @@  error:
 
 static int wm5110_remove(struct platform_device *pdev)
 {
+	snd_soc_unregister_platform(&pdev->dev);
 	snd_soc_unregister_codec(&pdev->dev);
 	pm_runtime_disable(&pdev->dev);