diff options
author | Ed Maste <emaste@FreeBSD.org> | 2018-03-23 15:50:01 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2018-03-23 15:50:01 +0000 |
commit | 8363051739fb8cc688255328a3d641dc9fe4718c (patch) | |
tree | b75bd0cd55aa16feb03c16e5e5545faa7a021896 /sys/compat/linuxkpi/common/include/linux/log2.h | |
parent | 68478431e006e2db94089ab0c1f411f7a75ef724 (diff) | |
download | src-8363051739fb8cc688255328a3d641dc9fe4718c.tar.gz src-8363051739fb8cc688255328a3d641dc9fe4718c.zip |
linuxkpi whitespace cleanup
Reviewed by: hselasky, markj
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D14807
Notes
Notes:
svn path=/head/; revision=331433
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/log2.h')
-rw-r--r-- | sys/compat/linuxkpi/common/include/linux/log2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/log2.h b/sys/compat/linuxkpi/common/include/linux/log2.h index a44c560f043b..d79eedf38176 100644 --- a/sys/compat/linuxkpi/common/include/linux/log2.h +++ b/sys/compat/linuxkpi/common/include/linux/log2.h @@ -50,7 +50,7 @@ is_power_of_2(unsigned long n) static inline unsigned long rounddown_pow_of_two(unsigned long x) { - return (1UL << (flsl(x) - 1)); + return (1UL << (flsl(x) - 1)); } #define ilog2(n) \ |