Commit 6e0c6e18 authored by Laurent Pinchart's avatar Laurent Pinchart

drm: rcar-du: Print the error value when DRM/KMS init fails

This helps debugging probe failures.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
parent 284b2884
...@@ -190,7 +190,7 @@ static int rcar_du_load(struct drm_device *dev, unsigned long flags) ...@@ -190,7 +190,7 @@ static int rcar_du_load(struct drm_device *dev, unsigned long flags)
/* DRM/KMS objects */ /* DRM/KMS objects */
ret = rcar_du_modeset_init(rcdu); ret = rcar_du_modeset_init(rcdu);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "failed to initialize DRM/KMS\n"); dev_err(&pdev->dev, "failed to initialize DRM/KMS (%d)\n", ret);
goto done; goto done;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment