diff options
author | Lionel Landwerlin <lionel.g.landwerlin@intel.com> | 2018-11-12 12:39:31 +0000 |
---|---|---|
committer | Lionel Landwerlin <lionel.g.landwerlin@intel.com> | 2018-11-12 17:40:16 +0000 |
commit | 63ac3328f0d1d37f286e397b14d9596ed09d7ca5 (patch) | |
tree | 9b0b34446554e701c82570af96b0eee405f60726 /drivers/gpu/drm/i915/intel_device_info.c | |
parent | bcce8d8633ff0167d5684f1076eea7ee6df63581 (diff) | |
download | linux-63ac3328f0d1d37f286e397b14d9596ed09d7ca5.tar.gz linux-63ac3328f0d1d37f286e397b14d9596ed09d7ca5.tar.bz2 linux-63ac3328f0d1d37f286e397b14d9596ed09d7ca5.zip |
drm/i915: fix broadwell EU computation
subslice_mask is an array indexed by slice, not subslice.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 8cc7669355136f ("drm/i915: store all subslice masks")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108712
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181112123931.2815-1-lionel.g.landwerlin@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/intel_device_info.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_device_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c index 89ed3a84a4fa..ceecb5bd5226 100644 --- a/drivers/gpu/drm/i915/intel_device_info.c +++ b/drivers/gpu/drm/i915/intel_device_info.c @@ -474,7 +474,7 @@ static void broadwell_sseu_info_init(struct drm_i915_private *dev_priv) u8 eu_disabled_mask; u32 n_disabled; - if (!(sseu->subslice_mask[ss] & BIT(ss))) + if (!(sseu->subslice_mask[s] & BIT(ss))) /* skip disabled subslice */ continue; |