diff options
| author | 2015-11-17 22:07:07 +0200 | |
|---|---|---|
| committer | 2015-12-21 15:40:18 -0800 | |
| commit | d4891039904fa25edf1ca793a0469633ed81df3f (patch) | |
| tree | 7c9f06ee4569bad4e2a78e3a4e869d17f096b986 | |
| parent | staging: lustre: hash.c: Replace IS_PO2 by is_power_of_2 (diff) | |
staging: lustre: libcfs.h: remove IS_PO2 and __is_po2
Removes IS_PO2 and __is_po2 since the uses of IS_PO2 have
been replaced by is_power_of_2
Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/lustre/include/linux/libcfs/libcfs.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/lustre/include/linux/libcfs/libcfs.h b/drivers/staging/lustre/include/linux/libcfs/libcfs.h index 049f6a9a638b..0d8a91ee5ffc 100644 --- a/drivers/staging/lustre/include/linux/libcfs/libcfs.h +++ b/drivers/staging/lustre/include/linux/libcfs/libcfs.h @@ -42,13 +42,6 @@ #include "curproc.h" -static inline int __is_po2(unsigned long long val) -{ - return !(val & (val - 1)); -} - -#define IS_PO2(val) __is_po2((unsigned long long)(val)) - #define LOWEST_BIT_SET(x) ((x) & ~((x) - 1)) /* |
