diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/log2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/log2.h b/include/linux/log2.h index 57e641e19a81..1b8a2c1cb0e3 100644 --- a/include/linux/log2.h +++ b/include/linux/log2.h | |||
@@ -159,7 +159,7 @@ unsigned long __roundup_pow_of_two(unsigned long n) | |||
159 | #define roundup_pow_of_two(n) \ | 159 | #define roundup_pow_of_two(n) \ |
160 | ( \ | 160 | ( \ |
161 | __builtin_constant_p(n) ? ( \ | 161 | __builtin_constant_p(n) ? ( \ |
162 | (n == 1) ? 0 : \ | 162 | (n == 1) ? 1 : \ |
163 | (1UL << (ilog2((n) - 1) + 1)) \ | 163 | (1UL << (ilog2((n) - 1) + 1)) \ |
164 | ) : \ | 164 | ) : \ |
165 | __roundup_pow_of_two(n) \ | 165 | __roundup_pow_of_two(n) \ |