public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/omap: dsi: Fix deferred probe warnings
@ 2023-04-12  7:39 Tony Lindgren
  2023-04-12  8:50 ` Laurent Pinchart
  2023-09-13 11:59 ` Tomi Valkeinen
  0 siblings, 2 replies; 11+ messages in thread
From: Tony Lindgren @ 2023-04-12  7:39 UTC (permalink / raw)
  To: Tomi Valkeinen, David Airlie, Daniel Vetter
  Cc: Laurent Pinchart, Sebastian Reichel, dri-devel, linux-omap,
	linux-kernel

We may not have dsi->dsidev initialized during probe, and that can
lead into various dsi related warnings as omap_dsi_host_detach() gets
called with dsi->dsidev set to NULL.

The warnings can be "Fixed dependency cycle(s)" followed by a
WARNING: CPU: 0 PID: 787 at drivers/gpu/drm/omapdrm/dss/dsi.c:4414.

Let's fix the warnings by checking for a valid dsi->dsidev.

Signed-off-by: Tony Lindgren <tony@atomide.com>
---
 drivers/gpu/drm/omapdrm/dss/dsi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/omapdrm/dss/dsi.c b/drivers/gpu/drm/omapdrm/dss/dsi.c
--- a/drivers/gpu/drm/omapdrm/dss/dsi.c
+++ b/drivers/gpu/drm/omapdrm/dss/dsi.c
@@ -4411,7 +4411,7 @@ static int omap_dsi_host_detach(struct mipi_dsi_host *host,
 {
 	struct dsi_data *dsi = host_to_omap(host);
 
-	if (WARN_ON(dsi->dsidev != client))
+	if (dsi->dsidev && WARN_ON(dsi->dsidev != client))
 		return -EINVAL;
 
 	cancel_delayed_work_sync(&dsi->dsi_disable_work);
-- 
2.40.0

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2023-09-18  3:49 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-12  7:39 [PATCH] drm/omap: dsi: Fix deferred probe warnings Tony Lindgren
2023-04-12  8:50 ` Laurent Pinchart
2023-04-12  8:55   ` Tomi Valkeinen
2023-04-12  8:59     ` Laurent Pinchart
2023-09-13  7:37       ` Tony Lindgren
2023-09-13 12:02         ` Tomi Valkeinen
2023-04-12  9:00   ` H. Nikolaus Schaller
2023-09-13 11:59 ` Tomi Valkeinen
2023-09-13 12:50   ` Tony Lindgren
2023-09-16 12:50   ` H. Nikolaus Schaller
2023-09-18  3:48     ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox