[Intel-gfx] [PATCH 5/9] drm/i915: Kill a goto from sprite disable code
ville.syrjala at linux.intel.com
ville.syrjala at linux.intel.com
Mon Sep 30 16:24:01 CEST 2013
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
Let's not use goto when a simple if suffices. This is not error handling
code or anything, so the goto looks out of place.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
drivers/gpu/drm/i915/intel_sprite.c | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_sprite.c b/drivers/gpu/drm/i915/intel_sprite.c
index 3112559..58af0e5 100644
--- a/drivers/gpu/drm/i915/intel_sprite.c
+++ b/drivers/gpu/drm/i915/intel_sprite.c
@@ -874,7 +874,6 @@ intel_disable_plane(struct drm_plane *plane)
struct drm_device *dev = plane->dev;
struct intel_plane *intel_plane = to_intel_plane(plane);
struct intel_crtc *intel_crtc;
- int ret = 0;
if (!plane->fb)
return 0;
@@ -888,20 +887,18 @@ intel_disable_plane(struct drm_plane *plane)
if (intel_crtc->active)
intel_plane->disable_plane(plane, plane->crtc);
- if (!intel_plane->obj)
- goto out;
-
- if (intel_crtc->active)
- intel_wait_for_vblank(dev, intel_plane->pipe);
+ if (intel_plane->obj) {
+ if (intel_crtc->active)
+ intel_wait_for_vblank(dev, intel_plane->pipe);
- mutex_lock(&dev->struct_mutex);
- intel_unpin_fb_obj(intel_plane->obj);
- mutex_unlock(&dev->struct_mutex);
+ mutex_lock(&dev->struct_mutex);
+ intel_unpin_fb_obj(intel_plane->obj);
+ mutex_unlock(&dev->struct_mutex);
- intel_plane->obj = NULL;
-out:
+ intel_plane->obj = NULL;
+ }
- return ret;
+ return 0;
}
static void intel_destroy_plane(struct drm_plane *plane)
--
1.8.1.5
More information about the Intel-gfx
mailing list