drm/bridge: ti-sn65dsi86: Remove redundant dev_err_probe()

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

Signed-off-by: Pan Chuang <panchuang@vivo.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patch.msgid.link/20260723131649.134127-11-panchuang@vivo.com
This commit is contained in:
Pan Chuang
2026-07-23 21:16:42 +08:00
committed by Douglas Anderson
parent 35b6cf0785
commit 9c950822f0

View File

@@ -2080,7 +2080,7 @@ static int ti_sn65dsi86_probe(struct i2c_client *client)
dev_name(pdata->dev), pdata);
if (ret)
return dev_err_probe(dev, ret, "failed to request interrupt\n");
return ret;
}
/*