mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 10:02:02 +02:00
ASoC: codecs: wcd938x-sdw: Propagate regcache_sync() errors
regcache_sync() can fail while replaying cached register state during runtime resume. wcd938x_sdw_runtime_resume() currently ignores that failure. Propagate the error and restore cache-only/dirty state on failure. Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn> Link: https://patch.msgid.link/20260704035857.90264-1-pengpeng@iscas.ac.cn Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
0d6b2d6f93
commit
72f1d7d21f
|
|
@ -1245,10 +1245,16 @@ static int wcd938x_sdw_runtime_suspend(struct device *dev)
|
|||
static int wcd938x_sdw_runtime_resume(struct device *dev)
|
||||
{
|
||||
struct wcd938x_sdw_priv *wcd = dev_get_drvdata(dev);
|
||||
int ret;
|
||||
|
||||
if (wcd->regmap) {
|
||||
regcache_cache_only(wcd->regmap, false);
|
||||
regcache_sync(wcd->regmap);
|
||||
ret = regcache_sync(wcd->regmap);
|
||||
if (ret) {
|
||||
regcache_cache_only(wcd->regmap, true);
|
||||
regcache_mark_dirty(wcd->regmap);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
pm_runtime_mark_last_busy(dev);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user