[PATCH 2/9] ASoC: nau8824: stop resume when cache sync fails

From: Pengpeng Hou

Date: Sat Sep 05 2026 - 23:47:50 EST


nau8824_resume() restores cached registers during component resume but
ignores a regcache_sync() failure and continues with jack-detection
semaphore handling and IRQ enablement. Those operations assume that the
codec register state has already been restored.

Stop the local resume sequence when cache replay fails and return the
error to the ASoC component wrapper. The wrapper reports the failure
while retaining best-effort card resume, so no rollback or retry
semantics are introduced.

The issue was found by our static-analysis tool and manually reviewed.

Fixes: dfeabded0496 ("ASoC: nau8824: new driver")
Assisted-by: gpt 5
Signed-off-by: Pengpeng Hou <hppiscas@xxxxxxx>
---
sound/soc/codecs/nau8824.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sound/soc/codecs/nau8824.c b/sound/soc/codecs/nau8824.c
index 426a488ff2a3..42d6ddd66e2b 100644
--- a/sound/soc/codecs/nau8824.c
+++ b/sound/soc/codecs/nau8824.c
@@ -1546,7 +1546,10 @@ static int __maybe_unused nau8824_resume(struct snd_soc_component *component)
int ret;

regcache_cache_only(nau8824->regmap, false);
- regcache_sync(nau8824->regmap);
+ ret = regcache_sync(nau8824->regmap);
+ if (ret)
+ return ret;
+
if (nau8824->irq) {
/* Hold semaphore to postpone playback happening
* until jack detection done.
--
2.50.1 (Apple Git-155)