mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
ASoC: codecs: cs4349: Propagate regcache_sync() errors
regcache_sync() can fail while replaying cached register state during runtime resume. cs4349_runtime_resume() currently ignores that failure and returns success. Propagate the error, restore cache-only/dirty state, and hold reset low again on sync failure. Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn> Link: https://patch.msgid.link/20260704040330.23616-1-pengpeng@iscas.ac.cn Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
56ce50099e
commit
a407338ca6
|
|
@ -340,7 +340,13 @@ static int cs4349_runtime_resume(struct device *dev)
|
|||
gpiod_set_value_cansleep(cs4349->reset_gpio, 1);
|
||||
|
||||
regcache_cache_only(cs4349->regmap, false);
|
||||
regcache_sync(cs4349->regmap);
|
||||
ret = regcache_sync(cs4349->regmap);
|
||||
if (ret) {
|
||||
regcache_cache_only(cs4349->regmap, true);
|
||||
regcache_mark_dirty(cs4349->regmap);
|
||||
gpiod_set_value_cansleep(cs4349->reset_gpio, 0);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user