diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-04-16 12:46:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-17 09:04:03 -0400 |
commit | f8ccad2164d406e60c0fa91206258f608fdb0148 (patch) | |
tree | 61dda6be1e6cd5882e74e02904e943f2c5e8585f /fs/befs/befs.h | |
parent | 038428fcf7f05e5da46de617831a8230e1a2551d (diff) | |
download | linux-f8ccad2164d406e60c0fa91206258f608fdb0148.tar.bz2 |
befs: replace typedef befs_inode_info by structure
See Documentation/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/befs.h')
-rw-r--r-- | fs/befs/befs.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/befs/befs.h b/fs/befs/befs.h index 11461abfda11..1fead8d56a98 100644 --- a/fs/befs/befs.h +++ b/fs/befs/befs.h @@ -56,7 +56,7 @@ struct befs_sb_info { struct nls_table *nls; }; -typedef struct befs_inode_info { +struct befs_inode_info { u32 i_flags; u32 i_type; @@ -70,8 +70,7 @@ typedef struct befs_inode_info { } i_data; struct inode vfs_inode; - -} befs_inode_info; +}; enum befs_err { BEFS_OK, @@ -110,7 +109,7 @@ BEFS_SB(const struct super_block *super) return (struct befs_sb_info *) super->s_fs_info; } -static inline befs_inode_info * +static inline struct befs_inode_info * BEFS_I(const struct inode *inode) { return list_entry(inode, struct befs_inode_info, vfs_inode); |