From: Fred Chou Date: Tue, 17 Feb 2015 21:45:36 +0000 (-0800) Subject: fs: fat: use MSDOS_SB macro to get msdos_sb_info X-Git-Tag: MMI-PSA29.97-13-9~10606^2~52 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d6bd428275f3f470fc7cf6624b737c6d7805b44b;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git 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: Fred Chou Acked-by: OGAWA Hirofumi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 7b41a2dcdd76..497c7c5263c7 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -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)