Staging: exfat: fixed a long line coding style issue
Fixed a coding style issue Signed-off-by: Vivek M <bitu.kv@gmail.com> Link: https://lore.kernel.org/r/1582837865-2219-1-git-send-email-bitu.kv@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ece19f3ec8
commit
2777313cf2
|
@ -30,8 +30,9 @@ void exfat_bdev_close(struct super_block *sb)
|
|||
p_bd->opened = false;
|
||||
}
|
||||
|
||||
int exfat_bdev_read(struct super_block *sb, sector_t secno, struct buffer_head **bh,
|
||||
u32 num_secs, bool read)
|
||||
int exfat_bdev_read(struct super_block *sb, sector_t secno,
|
||||
struct buffer_head **bh, u32 num_secs,
|
||||
bool read)
|
||||
{
|
||||
struct bd_info_t *p_bd = &(EXFAT_SB(sb)->bd_info);
|
||||
struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
|
||||
|
@ -65,7 +66,8 @@ int exfat_bdev_read(struct super_block *sb, sector_t secno, struct buffer_head *
|
|||
return -EIO;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
s32 count;
|
||||
|
|
Loading…
Reference in New Issue