mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
20ea6adbf1
Build system: x86_64 Build-tested: bcm2708, bcm2709, bcm2710, bcm2711 Run-tested: bcm2708/RPiB+, bcm2709/RPi3B, bcm2710/RPi3B, bcm2711/RPi4B Signed-off-by: Marty Jones <mj8263788@gmail.com> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
865 B
Diff
26 lines
865 B
Diff
From f8507ec6caab1faf9bdb32257079094ca3600bfc Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Thu, 20 Jan 2022 17:29:36 +0000
|
|
Subject: [PATCH] drm/bridge: tc358762: Ignore EPROBE_DEFER when
|
|
logging errors
|
|
|
|
mipi_dsi_attach can fail due to resources not being available
|
|
yet, therefore do not log error messages should they occur.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/bridge/tc358762.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/bridge/tc358762.c
|
|
+++ b/drivers/gpu/drm/bridge/tc358762.c
|
|
@@ -243,7 +243,7 @@ static int tc358762_probe(struct mipi_ds
|
|
ret = mipi_dsi_attach(dsi);
|
|
if (ret < 0) {
|
|
drm_bridge_remove(&ctx->bridge);
|
|
- dev_err(dev, "failed to attach dsi\n");
|
|
+ dev_err_probe(dev, ret, "failed to attach dsi\n");
|
|
}
|
|
|
|
return ret;
|