Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6bd4282 authored by Fred Chou's avatar Fred Chou Committed by Linus Torvalds
Browse files

fs: fat: use MSDOS_SB macro to get msdos_sb_info



Use the MSDOS_SB macro to get msdos_sb_info, instead of coding it
directly.

Signed-off-by: default avatarFred Chou <fred.chou.nd@gmail.com>
Acked-by: default avatarOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 714b71a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -580,7 +580,7 @@ static void fat_set_state(struct super_block *sb,
{
	struct buffer_head *bh;
	struct fat_boot_sector *b;
	struct msdos_sb_info *sbi = sb->s_fs_info;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);

	/* do not change any thing if mounted read only */
	if ((sb->s_flags & MS_RDONLY) && !force)