mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 10:02:02 +02:00
ASoC: codecs: cs35l32: Propagate regcache_sync() errors
regcache_sync() can fail while replaying cached register state during runtime resume. cs35l32_runtime_resume() currently ignores that failure. Propagate the error, restore cache-only/dirty state, and unwind the reset and supply state acquired by runtime resume. Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn> Link: https://patch.msgid.link/20260704035957.97236-1-pengpeng@iscas.ac.cn Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
72f1d7d21f
commit
5e5ea96e68
|
|
@ -538,7 +538,15 @@ static int cs35l32_runtime_resume(struct device *dev)
|
|||
gpiod_set_value_cansleep(cs35l32->reset_gpio, 1);
|
||||
|
||||
regcache_cache_only(cs35l32->regmap, false);
|
||||
regcache_sync(cs35l32->regmap);
|
||||
ret = regcache_sync(cs35l32->regmap);
|
||||
if (ret) {
|
||||
regcache_cache_only(cs35l32->regmap, true);
|
||||
regcache_mark_dirty(cs35l32->regmap);
|
||||
gpiod_set_value_cansleep(cs35l32->reset_gpio, 0);
|
||||
regulator_bulk_disable(ARRAY_SIZE(cs35l32->supplies),
|
||||
cs35l32->supplies);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user