Commit 9afd030f authored by S.j. Wang's avatar S.j. Wang Committed by Greg Kroah-Hartman

ASoC: cs42xx8: Add regcache mask dirty

commit ad6eecbf upstream.

Add regcache_mark_dirty before regcache_sync for power
of codec may be lost at suspend, then all the register
need to be reconfigured.

Fixes: 0c516b4f ("ASoC: cs42xx8: Add codec driver
support for CS42448/CS42888")
Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarShengjiu Wang <shengjiu.wang@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 097b73d4
...@@ -558,6 +558,7 @@ static int cs42xx8_runtime_resume(struct device *dev) ...@@ -558,6 +558,7 @@ static int cs42xx8_runtime_resume(struct device *dev)
msleep(5); msleep(5);
regcache_cache_only(cs42xx8->regmap, false); regcache_cache_only(cs42xx8->regmap, false);
regcache_mark_dirty(cs42xx8->regmap);
ret = regcache_sync(cs42xx8->regmap); ret = regcache_sync(cs42xx8->regmap);
if (ret) { if (ret) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment