Skip to content

Commit

Permalink
drm/i915: simplify check for I915G/I945G in bit 6 swizzling detection
Browse files Browse the repository at this point in the history
Commit c9c4b6f ("drm/i915: fix swizzle detection for gen3") added a
complicated check for I915G/I945G. Pineview and other gen3 devices match
IS_MOBILE() anyway. Simplify.

Cc: Daniel Vetter <daniel@ffwll.ch>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1481627459-488-1-git-send-email-jani.nikula@intel.com
  • Loading branch information
Jani Nikula committed Dec 14, 2016
1 parent 2dd85ae commit 9eebfdb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/gpu/drm/i915/i915_gem_fence_reg.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,7 @@ i915_gem_detect_bit_6_swizzle(struct drm_i915_private *dev_priv)
swizzle_x = I915_BIT_6_SWIZZLE_NONE;
swizzle_y = I915_BIT_6_SWIZZLE_NONE;
} else if (IS_MOBILE(dev_priv) ||
(IS_GEN3(dev_priv) &&
!IS_G33(dev_priv) && !IS_PINEVIEW(dev_priv))) {
IS_I915G(dev_priv) || IS_I945G(dev_priv)) {
uint32_t dcc;

/* On 9xx chipsets, channel interleave by the CPU is
Expand Down

0 comments on commit 9eebfdb

Please sign in to comment.