diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-04-16 15:46:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-17 09:04:03 -0400 |
commit | 038428fcf7f05e5da46de617831a8230e1a2551d (patch) | |
tree | 5407218f36088da19b62a69de5a5979dc9807cad /fs/befs/super.c | |
parent | 09ad0eae5ed0f354df892b1cfb868338dc578c5c (diff) |
befs: replace typedef befs_sb_info by structure
See Documenation/CodingStyle
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/befs/super.c')
-rw-r--r-- | fs/befs/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/befs/super.c b/fs/befs/super.c index ca40f828f64d..aeafc4d84278 100644 --- a/fs/befs/super.c +++ b/fs/befs/super.c | |||
@@ -24,7 +24,7 @@ | |||
24 | int | 24 | int |
25 | befs_load_sb(struct super_block *sb, befs_super_block * disk_sb) | 25 | befs_load_sb(struct super_block *sb, befs_super_block * disk_sb) |
26 | { | 26 | { |
27 | befs_sb_info *befs_sb = BEFS_SB(sb); | 27 | struct befs_sb_info *befs_sb = BEFS_SB(sb); |
28 | 28 | ||
29 | /* Check the byte order of the filesystem */ | 29 | /* Check the byte order of the filesystem */ |
30 | if (disk_sb->fs_byte_order == BEFS_BYTEORDER_NATIVE_LE) | 30 | if (disk_sb->fs_byte_order == BEFS_BYTEORDER_NATIVE_LE) |
@@ -59,7 +59,7 @@ befs_load_sb(struct super_block *sb, befs_super_block * disk_sb) | |||
59 | int | 59 | int |
60 | befs_check_sb(struct super_block *sb) | 60 | befs_check_sb(struct super_block *sb) |
61 | { | 61 | { |
62 | befs_sb_info *befs_sb = BEFS_SB(sb); | 62 | struct befs_sb_info *befs_sb = BEFS_SB(sb); |
63 | 63 | ||
64 | /* Check magic headers of super block */ | 64 | /* Check magic headers of super block */ |
65 | if ((befs_sb->magic1 != BEFS_SUPER_MAGIC1) | 65 | if ((befs_sb->magic1 != BEFS_SUPER_MAGIC1) |