From: Ville Syrjälä <[email protected]>

intel_cursor_plane_create() and intel_sprite_plane_create() return
an error pointer, so let's not mistakenly look for a NULL pointer.

Cc: Chris Wilson <[email protected]>
Reported-by: Chris Wilson <[email protected]>
References: 
https://lists.freedesktop.org/archives/intel-gfx/2016-November/110690.html
Fixes: b079bd17e301 ("drm/i915: Bail if plane/crtc init fails")
Signed-off-by: Ville Syrjälä <[email protected]>
---
 drivers/gpu/drm/i915/intel_display.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_display.c 
b/drivers/gpu/drm/i915/intel_display.c
index e8c40a69bbc4..817ed3f320f7 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -15294,14 +15294,14 @@ static int intel_crtc_init(struct drm_i915_private 
*dev_priv, enum pipe pipe)
                struct intel_plane *plane;
 
                plane = intel_sprite_plane_create(dev_priv, pipe, sprite);
-               if (!plane) {
+               if (IS_ERR(plane)) {
                        ret = PTR_ERR(plane);
                        goto fail;
                }
        }
 
        cursor = intel_cursor_plane_create(dev_priv, pipe);
-       if (!cursor) {
+       if (IS_ERR(cursor)) {
                ret = PTR_ERR(cursor);
                goto fail;
        }
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to