aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2016-05-04 11:37:58 -0400
committerMaxime Ripard <maxime.ripard@free-electrons.com>2016-05-30 02:28:33 -0400
commit0de6e914a035076b1241f5738c06c9d3820abd6e (patch)
tree004330f8eb98fda74a2810667b251342119234c2
parent0bbbb00bda57e6f091275b0103445596322b9277 (diff)
drm/sun4i: rgb: panel is an error pointer
In case of an error, our pointer to the drm_panel structure attached to our encoder will hold an error pointer, not a NULL pointer. Make sure we check the right thing. Fixes: 29e57fab97fc ("drm: sun4i: Add RGB output") Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r--drivers/gpu/drm/sun4i/sun4i_rgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sun4i/sun4i_rgb.c b/drivers/gpu/drm/sun4i/sun4i_rgb.c
index fe7ef52a9346..aaffe9e64ffb 100644
--- a/drivers/gpu/drm/sun4i/sun4i_rgb.c
+++ b/drivers/gpu/drm/sun4i/sun4i_rgb.c
@@ -217,7 +217,7 @@ int sun4i_rgb_init(struct drm_device *drm)
217 int ret; 217 int ret;
218 218
219 /* If we don't have a panel, there's no point in going on */ 219 /* If we don't have a panel, there's no point in going on */
220 if (!tcon->panel) 220 if (IS_ERR(tcon->panel))
221 return -ENODEV; 221 return -ENODEV;
222 222
223 rgb = devm_kzalloc(drm->dev, sizeof(*rgb), GFP_KERNEL); 223 rgb = devm_kzalloc(drm->dev, sizeof(*rgb), GFP_KERNEL);