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:
vivek m 2020-02-27 21:11:05 +00:00 committed by Greg Kroah-Hartman
parent ece19f3ec8
commit 2777313cf2
1 changed files with 5 additions and 3 deletions

View File

@ -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;