Re: [PATCH v2 13/24] ASoC: codecs: cs35l56: Use guard() and PM runtime scope helpers
From: Cezary Rojewski
Date: Mon Jul 06 2026 - 08:16:18 EST
On 7/3/2026 7:53 AM, phucduc.bui@xxxxxxxxx wrote:
...
@@ -688,14 +689,8 @@ irqreturn_t cs35l56_irq(int irq, void *data)Nitpick: this will leave a superfluous newline.
if (status8 & CS35L56_TEMP_ERR_EINT1_MASK)
dev_crit(cs35l56_base->dev, "Overtemp error\n");
- ret = IRQ_HANDLED;
+ return IRQ_HANDLED;
-err:
- pm_runtime_put(cs35l56_base->dev);
-err_unlock:
- mutex_unlock(&cs35l56_base->irq_lock);
-
- return ret;
}