提交 3156054b 编写于 作者: A Akinobu Mita 提交者: Linus Torvalds

[PATCH] bitops: parisc: add ()-pair in __ffz() macro

Noticed by Michael Tokarev

add missing ()-pair in __ffz() macro for parisc
Signed-off-by: NAkinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 4668f0cd
......@@ -220,7 +220,7 @@ static __inline__ unsigned long __ffs(unsigned long x)
}
/* Undefined if no bit is zero. */
#define ffz(x) __ffs(~x)
#define ffz(x) __ffs(~(x))
/*
* ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册