diff options
Diffstat (limited to 'include/asm-parisc')
-rw-r--r-- | include/asm-parisc/bitops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-parisc/bitops.h b/include/asm-parisc/bitops.h index 15d8c2b51584..ca6119af20af 100644 --- a/include/asm-parisc/bitops.h +++ b/include/asm-parisc/bitops.h | |||
@@ -220,7 +220,7 @@ static __inline__ unsigned long __ffs(unsigned long x) | |||
220 | } | 220 | } |
221 | 221 | ||
222 | /* Undefined if no bit is zero. */ | 222 | /* Undefined if no bit is zero. */ |
223 | #define ffz(x) __ffs(~x) | 223 | #define ffz(x) __ffs(~(x)) |
224 | 224 | ||
225 | /* | 225 | /* |
226 | * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set) | 226 | * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set) |