OSDN Git Service

i915: Replace "hweight8(dev_priv->info.subslice_7eu[i]) != 1" with "!is_power_of_2...
authorZeng Zhaoxiu <zhaoxiu.zeng@gmail.com>
Sun, 6 Dec 2015 10:26:30 +0000 (18:26 +0800)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 7 Dec 2015 07:44:20 +0000 (08:44 +0100)
Signed-off-by: Zeng Zhaoxiu <zhaoxiu.zeng@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1449397590-14292-1-git-send-email-zhaoxiu.zeng@gmail.com
drivers/gpu/drm/i915/intel_ringbuffer.c

index 57d78f2..e5359eb 100644 (file)
@@ -27,6 +27,7 @@
  *
  */
 
+#include <linux/log2.h>
 #include <drm/drmP.h>
 #include "i915_drv.h"
 #include <drm/i915_drm.h>
@@ -995,7 +996,7 @@ static int skl_tune_iz_hashing(struct intel_engine_cs *ring)
                 * Only consider slices where one, and only one, subslice has 7
                 * EUs
                 */
-               if (hweight8(dev_priv->info.subslice_7eu[i]) != 1)
+               if (!is_power_of_2(dev_priv->info.subslice_7eu[i]))
                        continue;
 
                /*