Commit d85cad42 authored by Pragat Pandya's avatar Pragat Pandya Committed by Greg Kroah-Hartman

staging: exfat: Fix alignment warnings

Fix checkpatch warning "Alignment should match open parenthesis".
Signed-off-by: default avatarPragat Pandya <pragat.pandya@gmail.com>
Link: https://lore.kernel.org/r/20200111142233.11354-1-pragat.pandya@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f3c69559
...@@ -31,7 +31,7 @@ void exfat_bdev_close(struct super_block *sb) ...@@ -31,7 +31,7 @@ void exfat_bdev_close(struct super_block *sb)
} }
int exfat_bdev_read(struct super_block *sb, sector_t secno, struct buffer_head **bh, int exfat_bdev_read(struct super_block *sb, sector_t secno, struct buffer_head **bh,
u32 num_secs, bool read) u32 num_secs, bool read)
{ {
struct bd_info_t *p_bd = &(EXFAT_SB(sb)->bd_info); struct bd_info_t *p_bd = &(EXFAT_SB(sb)->bd_info);
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
...@@ -66,7 +66,7 @@ int exfat_bdev_read(struct super_block *sb, sector_t secno, struct buffer_head * ...@@ -66,7 +66,7 @@ int exfat_bdev_read(struct super_block *sb, sector_t secno, struct buffer_head *
} }
int exfat_bdev_write(struct super_block *sb, sector_t secno, struct buffer_head *bh, int exfat_bdev_write(struct super_block *sb, sector_t secno, struct buffer_head *bh,
u32 num_secs, bool sync) u32 num_secs, bool sync)
{ {
s32 count; s32 count;
struct buffer_head *bh2; struct buffer_head *bh2;
......
...@@ -250,7 +250,7 @@ static u32 test_alloc_bitmap(struct super_block *sb, u32 clu) ...@@ -250,7 +250,7 @@ static u32 test_alloc_bitmap(struct super_block *sb, u32 clu)
} }
static s32 exfat_alloc_cluster(struct super_block *sb, s32 num_alloc, static s32 exfat_alloc_cluster(struct super_block *sb, s32 num_alloc,
struct chain_t *p_chain) struct chain_t *p_chain)
{ {
s32 num_clusters = 0; s32 num_clusters = 0;
u32 hint_clu, new_clu, last_clu = CLUSTER_32(~0); u32 hint_clu, new_clu, last_clu = CLUSTER_32(~0);
...@@ -329,7 +329,7 @@ static s32 exfat_alloc_cluster(struct super_block *sb, s32 num_alloc, ...@@ -329,7 +329,7 @@ static s32 exfat_alloc_cluster(struct super_block *sb, s32 num_alloc,
} }
static void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain, static void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain,
s32 do_relse) s32 do_relse)
{ {
s32 num_clusters = 0; s32 num_clusters = 0;
u32 clu; u32 clu;
...@@ -920,7 +920,7 @@ static void exfat_set_entry_size(struct dentry_t *p_entry, u64 size) ...@@ -920,7 +920,7 @@ static void exfat_set_entry_size(struct dentry_t *p_entry, u64 size)
} }
static void exfat_get_entry_time(struct dentry_t *p_entry, struct timestamp_t *tp, static void exfat_get_entry_time(struct dentry_t *p_entry, struct timestamp_t *tp,
u8 mode) u8 mode)
{ {
u16 t = 0x00, d = 0x21; u16 t = 0x00, d = 0x21;
struct file_dentry_t *ep = (struct file_dentry_t *)p_entry; struct file_dentry_t *ep = (struct file_dentry_t *)p_entry;
...@@ -949,7 +949,7 @@ static void exfat_get_entry_time(struct dentry_t *p_entry, struct timestamp_t *t ...@@ -949,7 +949,7 @@ static void exfat_get_entry_time(struct dentry_t *p_entry, struct timestamp_t *t
} }
static void exfat_set_entry_time(struct dentry_t *p_entry, struct timestamp_t *tp, static void exfat_set_entry_time(struct dentry_t *p_entry, struct timestamp_t *tp,
u8 mode) u8 mode)
{ {
u16 t, d; u16 t, d;
struct file_dentry_t *ep = (struct file_dentry_t *)p_entry; struct file_dentry_t *ep = (struct file_dentry_t *)p_entry;
...@@ -1013,7 +1013,7 @@ static void init_name_entry(struct name_dentry_t *ep, u16 *uniname) ...@@ -1013,7 +1013,7 @@ static void init_name_entry(struct name_dentry_t *ep, u16 *uniname)
} }
static s32 exfat_init_dir_entry(struct super_block *sb, struct chain_t *p_dir, static s32 exfat_init_dir_entry(struct super_block *sb, struct chain_t *p_dir,
s32 entry, u32 type, u32 start_clu, u64 size) s32 entry, u32 type, u32 start_clu, u64 size)
{ {
sector_t sector; sector_t sector;
u8 flags; u8 flags;
...@@ -1089,7 +1089,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir, ...@@ -1089,7 +1089,7 @@ static s32 exfat_init_ext_entry(struct super_block *sb, struct chain_t *p_dir,
} }
static void exfat_delete_dir_entry(struct super_block *sb, struct chain_t *p_dir, static void exfat_delete_dir_entry(struct super_block *sb, struct chain_t *p_dir,
s32 entry, s32 order, s32 num_entries) s32 entry, s32 order, s32 num_entries)
{ {
int i; int i;
sector_t sector; sector_t sector;
...@@ -1256,7 +1256,7 @@ static s32 _walk_fat_chain(struct super_block *sb, struct chain_t *p_dir, ...@@ -1256,7 +1256,7 @@ static s32 _walk_fat_chain(struct super_block *sb, struct chain_t *p_dir,
} }
static s32 find_location(struct super_block *sb, struct chain_t *p_dir, s32 entry, static s32 find_location(struct super_block *sb, struct chain_t *p_dir, s32 entry,
sector_t *sector, s32 *offset) sector_t *sector, s32 *offset)
{ {
s32 off, ret; s32 off, ret;
u32 clu = 0; u32 clu = 0;
...@@ -1492,7 +1492,8 @@ void release_entry_set(struct entry_set_cache_t *es) ...@@ -1492,7 +1492,8 @@ void release_entry_set(struct entry_set_cache_t *es)
/* search EMPTY CONTINUOUS "num_entries" entries */ /* search EMPTY CONTINUOUS "num_entries" entries */
static s32 search_deleted_or_unused_entry(struct super_block *sb, static s32 search_deleted_or_unused_entry(struct super_block *sb,
struct chain_t *p_dir, s32 num_entries) struct chain_t *p_dir,
s32 num_entries)
{ {
int i, dentry, num_empty = 0; int i, dentry, num_empty = 0;
s32 dentries_per_clu; s32 dentries_per_clu;
...@@ -1668,7 +1669,7 @@ static s32 find_empty_entry(struct inode *inode, struct chain_t *p_dir, s32 num_ ...@@ -1668,7 +1669,7 @@ static s32 find_empty_entry(struct inode *inode, struct chain_t *p_dir, s32 num_
} }
static s32 extract_uni_name_from_name_entry(struct name_dentry_t *ep, u16 *uniname, static s32 extract_uni_name_from_name_entry(struct name_dentry_t *ep, u16 *uniname,
s32 order) s32 order)
{ {
int i, len = 0; int i, len = 0;
...@@ -1690,8 +1691,8 @@ static s32 extract_uni_name_from_name_entry(struct name_dentry_t *ep, u16 *unina ...@@ -1690,8 +1691,8 @@ static s32 extract_uni_name_from_name_entry(struct name_dentry_t *ep, u16 *unina
* -2 : entry with the name does not exist * -2 : entry with the name does not exist
*/ */
static s32 exfat_find_dir_entry(struct super_block *sb, struct chain_t *p_dir, static s32 exfat_find_dir_entry(struct super_block *sb, struct chain_t *p_dir,
struct uni_name_t *p_uniname, s32 num_entries, struct uni_name_t *p_uniname, s32 num_entries,
struct dos_name_t *p_dosname, u32 type) struct dos_name_t *p_dosname, u32 type)
{ {
int i = 0, dentry = 0, num_ext_entries = 0, len, step; int i = 0, dentry = 0, num_ext_entries = 0, len, step;
s32 order = 0; s32 order = 0;
...@@ -1833,7 +1834,7 @@ static s32 exfat_find_dir_entry(struct super_block *sb, struct chain_t *p_dir, ...@@ -1833,7 +1834,7 @@ static s32 exfat_find_dir_entry(struct super_block *sb, struct chain_t *p_dir,
} }
static s32 exfat_count_ext_entries(struct super_block *sb, struct chain_t *p_dir, static s32 exfat_count_ext_entries(struct super_block *sb, struct chain_t *p_dir,
s32 entry, struct dentry_t *p_entry) s32 entry, struct dentry_t *p_entry)
{ {
int i, count = 0; int i, count = 0;
u32 type; u32 type;
...@@ -1996,8 +1997,8 @@ s32 get_num_entries_and_dos_name(struct super_block *sb, struct chain_t *p_dir, ...@@ -1996,8 +1997,8 @@ s32 get_num_entries_and_dos_name(struct super_block *sb, struct chain_t *p_dir,
} }
static void exfat_get_uni_name_from_ext_entry(struct super_block *sb, static void exfat_get_uni_name_from_ext_entry(struct super_block *sb,
struct chain_t *p_dir, s32 entry, struct chain_t *p_dir, s32 entry,
u16 *uniname) u16 *uniname)
{ {
int i; int i;
struct dentry_t *ep; struct dentry_t *ep;
......
...@@ -365,7 +365,7 @@ static int ffsMountVol(struct super_block *sb) ...@@ -365,7 +365,7 @@ static int ffsMountVol(struct super_block *sb)
if (p_bd->sector_size < sb->s_blocksize) { if (p_bd->sector_size < sb->s_blocksize) {
printk(KERN_INFO "EXFAT: mount failed - sector size %d less than blocksize %ld\n", printk(KERN_INFO "EXFAT: mount failed - sector size %d less than blocksize %ld\n",
p_bd->sector_size, sb->s_blocksize); p_bd->sector_size, sb->s_blocksize);
ret = -EINVAL; ret = -EINVAL;
goto out; goto out;
} }
......
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