Re: [PATCH v6 4/5] ASoC: airoha: Add AFE driver for Airoha AN7581
From: Bui Duc Phuc
Date: Tue Sep 08 2026 - 06:12:43 EST
> + ret = devm_request_irq(dev, irq_id, an7581_afe_irq_handler,
> + IRQF_TRIGGER_NONE, "asys-isr", (void *)afe);
> + if (ret)
> + return dev_err_probe(dev, ret, "Failed to request irq for asys-isr\n");
> +
I think we can return the error directly here, as devm_request_irq()
already reports the error.
dev_err_probe() would result in a redundant error message.