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 <[email protected]> --- drivers/gpu/drm/bridge/nwl-dsi.c | 4 ---- 1 file changed, 4 deletions(-) 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; -- 2.49.0
