diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-04-16 12:46:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-17 09:04:03 -0400 |
commit | 09ad0eae5ed0f354df892b1cfb868338dc578c5c (patch) | |
tree | b4b26c0fd0221c2880c81fe968f688675f810787 /fs/befs/befs.h | |
parent | a737e835e5769ef22897179ed7f82b1fc50bfa58 (diff) | |
download | op-kernel-dev-09ad0eae5ed0f354df892b1cfb868338dc578c5c.zip op-kernel-dev-09ad0eae5ed0f354df892b1cfb868338dc578c5c.tar.gz |
befs: replace typedef befs_mount_options 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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/befs/befs.h b/fs/befs/befs.h index 3a7813a..d4751af 100644 --- a/fs/befs/befs.h +++ b/fs/befs/befs.h @@ -19,14 +19,14 @@ typedef u64 befs_blocknr_t; * BeFS in memory structures */ -typedef struct befs_mount_options { +struct befs_mount_options { kgid_t gid; kuid_t uid; int use_gid; int use_uid; int debug; char *iocharset; -} befs_mount_options; +}; typedef struct befs_sb_info { u32 magic1; @@ -52,7 +52,7 @@ typedef struct befs_sb_info { befs_inode_addr indices; u32 magic3; - befs_mount_options mount_opts; + struct befs_mount_options mount_opts; struct nls_table *nls; } befs_sb_info; |