pinctrl: intel: Remove redundant dev_err_probe()

Since commit 55b48e23f5 ("genirq/devres: Add error handling in
devm_request_*_irq()"), devm_request_irq() automatically logs
detailed error messages on failure. Remove the now-redundant
driver-specific dev_err_probe() calls.

Signed-off-by: Pan Chuang <panchuang@vivo.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
Pan Chuang 2026-07-17 18:58:45 +08:00 committed by Andy Shevchenko
parent ed1608d5e3
commit 699fd26ba3

View File

@ -1414,7 +1414,7 @@ static int intel_gpio_probe(struct intel_pinctrl *pctrl, int irq)
IRQF_SHARED | IRQF_NO_THREAD,
dev_name(pctrl->dev), pctrl);
if (ret)
return dev_err_probe(pctrl->dev, ret, "failed to request interrupt\n");
return ret;
/* Setup IRQ chip */
girq = &pctrl->chip.irq;