ASoC: codecs: wm5100: Propagate regcache_sync() errors

regcache_sync() can fail while replaying cached register state during
runtime resume. wm5100_runtime_resume() currently ignores that failure.

Propagate the error, restore cache-only/dirty state, and unwind the LDO
and core supplies acquired by runtime resume.

Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
Link: https://patch.msgid.link/20260704040132.8278-1-pengpeng@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Pengpeng Hou 2026-07-04 12:01:32 +08:00 committed by Mark Brown
parent 9497ea79d7
commit d5f4c13784
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -2659,7 +2659,15 @@ static int wm5100_runtime_resume(struct device *dev)
}
regcache_cache_only(wm5100->regmap, false);
regcache_sync(wm5100->regmap);
ret = regcache_sync(wm5100->regmap);
if (ret) {
regcache_cache_only(wm5100->regmap, true);
regcache_mark_dirty(wm5100->regmap);
gpiod_set_value_cansleep(wm5100->ldo_ena, 0);
regulator_bulk_disable(ARRAY_SIZE(wm5100->core_supplies),
wm5100->core_supplies);
return ret;
}
return 0;
}