[07/32] drm/bridge: nwl-dsi: remove redundant logging

Message ID 20250625-drm-dsi-host-no-device-ptr-v1-7-e36bc258a7c5@bootlin.com (mailing list archive)
State New
Headers
Series drm/mipi-dsi: avoid DSI host drivers to have pointers to DSI devices |

Commit Message

Luca Ceresoli June 25, 2025, 4:45 p.m. UTC
This line logged as info is too much, drivers should be mostly silent when
everything works. And now there is an equivalent dbg line logged in
mipi_dsi_attach(), valid for all DSI hosts.

Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
---
 drivers/gpu/drm/bridge/nwl-dsi.c | 4 ----
 1 file changed, 4 deletions(-)
  

Patch

diff --git a/drivers/gpu/drm/bridge/nwl-dsi.c b/drivers/gpu/drm/bridge/nwl-dsi.c
index ccce663192b35a795dad8cb479203d05b414173b..94356d02a7009a4d333f2df6c628d57c4bf66fdb 100644
--- a/drivers/gpu/drm/bridge/nwl-dsi.c
+++ b/drivers/gpu/drm/bridge/nwl-dsi.c
@@ -347,10 +347,6 @@  static int nwl_dsi_host_attach(struct mipi_dsi_host *dsi_host,
 			       struct mipi_dsi_device *device)
 {
 	struct nwl_dsi *dsi = container_of(dsi_host, struct nwl_dsi, dsi_host);
-	struct device *dev = dsi->dev;
-
-	DRM_DEV_INFO(dev, "lanes=%u, format=0x%x flags=0x%lx\n", device->lanes,
-		     device->format, device->mode_flags);
 
 	if (device->lanes > 4)
 		return -EINVAL;