Skip to content

Commit 973fe60

Browse files
6by9pelwell
authored andcommitted
drm/vc4: Correct one logging message that got promoted from dbg to err
commit 59ac702 ("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: 59ac702 ("drm/vc4: Get the rid of DRM_ERROR()") Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
1 parent 804c013 commit 973fe60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/vc4/vc4_hdmi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3351,7 +3351,7 @@ static int vc4_hdmi_bind(struct device *dev, struct device *master, void *data)
33513351
vc4_hdmi->ddc = of_find_i2c_adapter_by_node(ddc_node);
33523352
of_node_put(ddc_node);
33533353
if (!vc4_hdmi->ddc) {
3354-
drm_err(drm, "Failed to get ddc i2c adapter by node\n");
3354+
drm_dbg(drm, "Failed to get ddc i2c adapter by node\n");
33553355
return -EPROBE_DEFER;
33563356
}
33573357

0 commit comments

Comments
 (0)