diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-07-12 17:26:30 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-22 23:58:03 +0400 |
commit | 58770d7e83eede5fafbcdf54a604277d70010705 (patch) | |
tree | fbb6772b943bfd6ef0513bc7ec8d87a50ea9b330 /fs | |
parent | b7a90e8043e7ab1922126e1c1c5c004b470f9e2a (diff) | |
download | linux-stable-58770d7e83eede5fafbcdf54a604277d70010705.tar.gz linux-stable-58770d7e83eede5fafbcdf54a604277d70010705.tar.bz2 linux-stable-58770d7e83eede5fafbcdf54a604277d70010705.zip |
hfsplus: remove useless check
This check is useless because we always have 'sb->s_fs_info' to be non-NULL.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/hfsplus/super.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/hfsplus/super.c b/fs/hfsplus/super.c index 9e9c278830de..f4f3d5463061 100644 --- a/fs/hfsplus/super.c +++ b/fs/hfsplus/super.c @@ -240,9 +240,6 @@ static void hfsplus_put_super(struct super_block *sb) dprint(DBG_SUPER, "hfsplus_put_super\n"); - if (!sb->s_fs_info) - return; - if (!(sb->s_flags & MS_RDONLY) && sbi->s_vhdr) { struct hfsplus_vh *vhdr = sbi->s_vhdr; |