Commit 2777313c authored by vivek m's avatar vivek m Committed by Greg Kroah-Hartman
Browse files

Staging: exfat: fixed a long line coding style issue

parent ece19f3e
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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;