drm/i915: remove unnecessary check for crtc->primary->fb
authorPaulo Zanoni <paulo.r.zanoni@intel.com>
Wed, 4 Nov 2015 19:10:47 +0000 (17:10 -0200)
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Tue, 10 Nov 2015 09:58:49 +0000 (10:58 +0100)
We already check if the CRTC is visible, and it shouldn't be possible
to have a visible CRTC without an FB.

This was noticed by both Chris and Ville on different ocasions.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1446664257-32012-4-git-send-email-paulo.r.zanoni@intel.com
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
drivers/gpu/drm/i915/intel_fbc.c

index 72c336ffdd91bc0c29f49bcbe8b1657ce08a3863..4a21435d459b2325d7b84a28fa9fdc9f673b7257 100644 (file)
@@ -503,7 +503,7 @@ static struct drm_crtc *intel_fbc_find_crtc(struct drm_i915_private *dev_priv)
                        break;
        }
 
-       if (!crtc || crtc->primary->fb == NULL)
+       if (!crtc)
                return NULL;
 
        return crtc;
This page took 0.034415 seconds and 5 git commands to generate.