From 0134b1e8e66142a609bd66a922f7ac6499e2a85d Mon Sep 17 00:00:00 2001 From: Dave Stevenson Date: Wed, 5 Mar 2025 15:03:11 +0000 Subject: [PATCH] drm/vc4: Correct one logging message that got promoted from dbg to err commit 59ac702a9320 ("drm/vc4: Get the rid of DRM_ERROR()") converted all calls to DRM_ERROR into drm_err, but also converted one DRM_DEBUG into a drm_err. Switch it back to drm_dbg. Fixes: 59ac702a9320 ("drm/vc4: Get the rid of DRM_ERROR()") Signed-off-by: Dave Stevenson --- drivers/gpu/drm/vc4/vc4_hdmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/gpu/drm/vc4/vc4_hdmi.c +++ b/drivers/gpu/drm/vc4/vc4_hdmi.c @@ -3351,7 +3351,7 @@ static int vc4_hdmi_bind(struct device * vc4_hdmi->ddc = of_find_i2c_adapter_by_node(ddc_node); of_node_put(ddc_node); if (!vc4_hdmi->ddc) { - drm_err(drm, "Failed to get ddc i2c adapter by node\n"); + drm_dbg(drm, "Failed to get ddc i2c adapter by node\n"); return -EPROBE_DEFER; }