]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915: Eliminate superfluous i915_ggtt_view_rotated
authorChris Wilson <chris@chris-wilson.co.uk>
Sat, 14 Jan 2017 00:28:26 +0000 (00:28 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Sat, 14 Jan 2017 16:18:35 +0000 (16:18 +0000)
It is only being used to clear a struct and set the type, after which it
is overwritten. Since we no longer check the unset bits of the union,
skipping the clear is permissible.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170114002827.31315-6-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_gem_gtt.c
drivers/gpu/drm/i915/i915_gem_gtt.h
drivers/gpu/drm/i915/intel_display.c

index e24b961c30c657a827e02f267861aa3a2397aeed..169d10d81334047768959265676bd6b64dc6e548 100644 (file)
@@ -106,9 +106,6 @@ i915_get_ggtt_vma_pages(struct i915_vma *vma);
 const struct i915_ggtt_view i915_ggtt_view_normal = {
        .type = I915_GGTT_VIEW_NORMAL,
 };
-const struct i915_ggtt_view i915_ggtt_view_rotated = {
-       .type = I915_GGTT_VIEW_ROTATED,
-};
 
 static void gen6_ggtt_invalidate(struct drm_i915_private *dev_priv)
 {
index 71e7e0a7e2b6c74450702e152d597cf95f9204bb..f673544e570eda65741e31964abd1aa43178e876 100644 (file)
@@ -197,7 +197,6 @@ struct i915_ggtt_view {
 };
 
 extern const struct i915_ggtt_view i915_ggtt_view_normal;
-extern const struct i915_ggtt_view i915_ggtt_view_rotated;
 
 enum i915_cache_level;
 
index f4be20f0198a90002fe69218a374579c16e29619..f523256ef77cc39d35c001bddd25e60b5b533a21 100644 (file)
@@ -2137,11 +2137,10 @@ intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
                        const struct drm_framebuffer *fb,
                        unsigned int rotation)
 {
+       view->type = I915_GGTT_VIEW_NORMAL;
        if (drm_rotation_90_or_270(rotation)) {
-               *view = i915_ggtt_view_rotated;
+               view->type = I915_GGTT_VIEW_ROTATED;
                view->rotated = to_intel_framebuffer(fb)->rot_info;
-       } else {
-               *view = i915_ggtt_view_normal;
        }
 }