diff mbox

[v3,6/9] ASoC: tas2552: Call pm_runtime_disable when the module is removed

Message ID 1433765996-28930-7-git-send-email-peter.ujfalusi@ti.com (mailing list archive)
State Accepted
Commit 4785ed89f2ec6ccdd48eae7acab3dbc2c63e4ca6
Headers show

Commit Message

Peter Ujfalusi June 8, 2015, 12:19 p.m. UTC
The module can not be loaded again after it has been removed.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
---
 sound/soc/codecs/tas2552.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/sound/soc/codecs/tas2552.c b/sound/soc/codecs/tas2552.c
index 5e6490c19b7e..7e65294f5244 100644
--- a/sound/soc/codecs/tas2552.c
+++ b/sound/soc/codecs/tas2552.c
@@ -751,6 +751,7 @@  static int tas2552_probe(struct i2c_client *client,
 static int tas2552_i2c_remove(struct i2c_client *client)
 {
 	snd_soc_unregister_codec(&client->dev);
+	pm_runtime_disable(&client->dev);
 	return 0;
 }