mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
drm/vc4: Correct one logging message that got promoted from dbg to err
commit59ac702a93("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:59ac702a93("drm/vc4: Get the rid of DRM_ERROR()") Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
This commit is contained in:
committed by
Dom Cobley
parent
4cb0b2bd1a
commit
694f48748f
@@ -3229,7 +3229,7 @@ static int vc4_hdmi_bind(struct device *dev, struct device *master, void *data)
|
|||||||
vc4_hdmi->ddc = of_find_i2c_adapter_by_node(ddc_node);
|
vc4_hdmi->ddc = of_find_i2c_adapter_by_node(ddc_node);
|
||||||
of_node_put(ddc_node);
|
of_node_put(ddc_node);
|
||||||
if (!vc4_hdmi->ddc) {
|
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;
|
return -EPROBE_DEFER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user