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:
Pengpeng Hou 2026-07-04 12:03:30 +08:00 committed by Mark Brown
parent 56ce50099e
commit a407338ca6
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -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;
}