Commit ef16b89c authored by Valentin Vidic's avatar Valentin Vidic Committed by Greg Kroah-Hartman

staging: exfat: use BIT macro for defining sizes

Fixes checkpatch.pl warning:

  CHECK: Prefer using the BIT macro
Signed-off-by: default avatarValentin Vidic <vvidic@valentin-vidic.from.hr>
Link: https://lore.kernel.org/r/20190902184319.11971-1-vvidic@valentin-vidic.from.hrSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5b489e2f
...@@ -163,8 +163,8 @@ ...@@ -163,8 +163,8 @@
#define HIGH_INDEX_BIT (8) #define HIGH_INDEX_BIT (8)
#define HIGH_INDEX_MASK (0xFF00) #define HIGH_INDEX_MASK (0xFF00)
#define LOW_INDEX_BIT (16-HIGH_INDEX_BIT) #define LOW_INDEX_BIT (16-HIGH_INDEX_BIT)
#define UTBL_ROW_COUNT (1<<LOW_INDEX_BIT) #define UTBL_ROW_COUNT BIT(LOW_INDEX_BIT)
#define UTBL_COL_COUNT (1<<HIGH_INDEX_BIT) #define UTBL_COL_COUNT BIT(HIGH_INDEX_BIT)
static inline u16 get_col_index(u16 i) static inline u16 get_col_index(u16 i)
{ {
...@@ -691,7 +691,7 @@ struct exfat_mount_options { ...@@ -691,7 +691,7 @@ struct exfat_mount_options {
}; };
#define EXFAT_HASH_BITS 8 #define EXFAT_HASH_BITS 8
#define EXFAT_HASH_SIZE (1UL << EXFAT_HASH_BITS) #define EXFAT_HASH_SIZE BIT(EXFAT_HASH_BITS)
/* /*
* EXFAT file system in-core superblock data * EXFAT file system in-core superblock data
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment