[PATCH] hwmon: move SENSORS_LIMIT to hwmon.h
[powerpc.git] / include / asm-x86_64 / bitops.h
index a31bb99..05a0d37 100644 (file)
@@ -348,8 +348,7 @@ static inline int sched_find_first_bit(const unsigned long *b)
                return __ffs(b[0]);
        if (b[1])
                return __ffs(b[1]) + 64;
-       if (b[2])
-               return __ffs(b[2]) + 128;
+       return __ffs(b[2]) + 128;
 }
 
 /**