From: Ben Widawsky Date: Thu, 7 Apr 2016 17:53:14 +0000 (-0700) Subject: i965: Check eu/subslices are > 0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e5295b5fb442d433b22e3b6f4b5c28a0e48677cd;p=mesa.git i965: Check eu/subslices are > 0 Now that the check is restricted to gen8+, we should always get back a non-zero positive value for the EU and subslice counts. Signed-off-by: Ben Widawsky Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c index b596017c654..03e6852a7f1 100644 --- a/src/mesa/drivers/dri/i965/intel_screen.c +++ b/src/mesa/drivers/dri/i965/intel_screen.c @@ -1101,7 +1101,7 @@ intel_detect_sseu(struct intel_screen *intelScreen) * and we have to use conservative numbers for GPGPU on many platforms, but * otherwise, things will just work. */ - if (intelScreen->subslice_total == -1 || intelScreen->eu_total == -1) + if (intelScreen->subslice_total < 1 || intelScreen->eu_total < 1) _mesa_warning(NULL, "Kernel 4.1 required to properly query GPU properties.\n");