diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-04-01 07:03:52 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-04-03 18:02:54 -0400 |
commit | d9961b22716ddf59ca307fe862f93ff0ea919952 (patch) | |
tree | c99ce1164854007f3657d6c74f2d7335585c5ed3 | |
parent | a1b5fb3d34a32625b94aa232252495a751d3fd4a (diff) |
drm/rcar-du: Handle encoder initialization failures
The rcar_du_encoder_init() function can fail and return an error code.
Don't ignore it.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_kms.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.c b/drivers/gpu/drm/rcar-du/rcar_du_kms.c index fbeabd9a281f..a87edfac111f 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_kms.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.c | |||
@@ -248,7 +248,10 @@ int rcar_du_modeset_init(struct rcar_du_device *rcdu) | |||
248 | continue; | 248 | continue; |
249 | } | 249 | } |
250 | 250 | ||
251 | rcar_du_encoder_init(rcdu, pdata->type, pdata->output, pdata); | 251 | ret = rcar_du_encoder_init(rcdu, pdata->type, pdata->output, |
252 | pdata); | ||
253 | if (ret < 0) | ||
254 | return ret; | ||
252 | } | 255 | } |
253 | 256 | ||
254 | /* Set the possible CRTCs and possible clones. There's always at least | 257 | /* Set the possible CRTCs and possible clones. There's always at least |