From: Mariusz Kozlowski This patch fixes the unbalanced parenthesis inroduced by add-a-rounddown_pow_of_two-routine-to-log2h.patch. Signed-off-by: Mariusz Kozlowski Cc: Robert P. J. Day Signed-off-by: Andrew Morton --- include/linux/log2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/log2.h~add-a-rounddown_pow_of_two-routine-to-log2hpatch-fix include/linux/log2.h --- a/include/linux/log2.h~add-a-rounddown_pow_of_two-routine-to-log2hpatch-fix +++ a/include/linux/log2.h @@ -186,7 +186,7 @@ unsigned long __rounddown_pow_of_two(uns ( \ __builtin_constant_p(n) ? ( \ (n == 1) ? 0 : \ - (1UL << ilog2(n)) : \ + (1UL << ilog2(n))) : \ __rounddown_pow_of_two(n) \ ) _