diff options
author | Chuhong Yuan <hslester96@gmail.com> | 2019-11-18 15:37:07 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-11-18 13:02:37 +0000 |
commit | b1176bbb70866f24099cd2720283c7219fb4a81c (patch) | |
tree | 2697a31b298bb6caba5765821ac449c6a70e385a /sound | |
parent | 2dab09be49a1e7a4dd13cb47d3a1441a2ef33a87 (diff) | |
download | linux-b1176bbb70866f24099cd2720283c7219fb4a81c.tar.gz linux-b1176bbb70866f24099cd2720283c7219fb4a81c.tar.bz2 linux-b1176bbb70866f24099cd2720283c7219fb4a81c.zip |
ASoC: wm5100: add missed pm_runtime_disable
The driver forgets to call pm_runtime_disable in remove and
probe failure.
Add the calls to fix it.
Signed-off-by: Chuhong Yuan <hslester96@gmail.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20191118073707.28298-1-hslester96@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm5100.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm5100.c b/sound/soc/codecs/wm5100.c index 4af0e519e623..91cc63c5a51f 100644 --- a/sound/soc/codecs/wm5100.c +++ b/sound/soc/codecs/wm5100.c @@ -2617,6 +2617,7 @@ static int wm5100_i2c_probe(struct i2c_client *i2c, return ret; err_reset: + pm_runtime_disable(&i2c->dev); if (i2c->irq) free_irq(i2c->irq, wm5100); wm5100_free_gpio(i2c); @@ -2640,6 +2641,7 @@ static int wm5100_i2c_remove(struct i2c_client *i2c) { struct wm5100_priv *wm5100 = i2c_get_clientdata(i2c); + pm_runtime_disable(&i2c->dev); if (i2c->irq) free_irq(i2c->irq, wm5100); wm5100_free_gpio(i2c); |