diff options
author | Kari Argillander <kari.argillander@gmail.com> | 2021-08-16 13:37:32 +0300 |
---|---|---|
committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2021-08-27 17:05:09 +0300 |
commit | 528c9b3d1edf291685151afecd741d176f527ddf (patch) | |
tree | 0dcca37b2231345acf30a66ceede275891fe7817 /fs/ntfs3/ntfs_fs.h | |
parent | f8d87ed9f0d546ac5b05e8e7d2b148d4b77599fa (diff) | |
download | linux-528c9b3d1edf291685151afecd741d176f527ddf.tar.xz |
fs/ntfs3: Use linux/log2 is_power_of_2 function
We do not need our own implementation for this function in this
driver. It is much better to use generic one.
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3/ntfs_fs.h')
-rw-r--r-- | fs/ntfs3/ntfs_fs.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/ntfs3/ntfs_fs.h b/fs/ntfs3/ntfs_fs.h index 0c3ac89c3115..c8ea6dd38c21 100644 --- a/fs/ntfs3/ntfs_fs.h +++ b/fs/ntfs3/ntfs_fs.h @@ -972,11 +972,6 @@ static inline struct buffer_head *ntfs_bread(struct super_block *sb, return NULL; } -static inline bool is_power_of2(size_t v) -{ - return v && !(v & (v - 1)); -} - static inline struct ntfs_inode *ntfs_i(struct inode *inode) { return container_of(inode, struct ntfs_inode, vfs_inode); |