These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
24 lines
864 B
Diff
24 lines
864 B
Diff
From fbfc4a220ca05569682de1386c8192bde501b8d7 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
|
|
@@ -294,7 +294,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;
|