drm/i915: edp_panel_on does not need to return a bool
authorKeith Packard <keithp@keithp.com>
Thu, 29 Sep 2011 23:05:34 +0000 (16:05 -0700)
committerKeith Packard <keithp@keithp.com>
Thu, 6 Oct 2011 15:57:01 +0000 (08:57 -0700)
The return value was unused, so just stop doing that.

Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_dp.c

index f252ed2..fee6050 100644 (file)
@@ -900,7 +900,7 @@ static void ironlake_edp_panel_vdd_off(struct intel_dp *intel_dp)
 }
 
 /* Returns true if the panel was already on when called */
-static bool ironlake_edp_panel_on (struct intel_dp *intel_dp)
+static void ironlake_edp_panel_on (struct intel_dp *intel_dp)
 {
        struct drm_device *dev = intel_dp->base.base.dev;
        struct drm_i915_private *dev_priv = dev->dev_private;
@@ -909,7 +909,7 @@ static bool ironlake_edp_panel_on (struct intel_dp *intel_dp)
        if (!is_edp(intel_dp))
                return true;
        if (I915_READ(PCH_PP_STATUS) & PP_ON)
-               return true;
+               return;
 
        pp = I915_READ(PCH_PP_CONTROL);
        pp &= ~PANEL_UNLOCK_MASK;
@@ -932,8 +932,6 @@ static bool ironlake_edp_panel_on (struct intel_dp *intel_dp)
        pp |= PANEL_POWER_RESET; /* restore panel reset bit */
        I915_WRITE(PCH_PP_CONTROL, pp);
        POSTING_READ(PCH_PP_CONTROL);
-
-       return false;
 }
 
 static void ironlake_edp_panel_off(struct drm_encoder *encoder)