summaryrefslogtreecommitdiffstats
path: root/fs/befs/befs.h
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-04-16 15:46:17 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-04-17 09:04:03 -0400
commit09ad0eae5ed0f354df892b1cfb868338dc578c5c (patch)
treeb4b26c0fd0221c2880c81fe968f688675f810787 /fs/befs/befs.h
parenta737e835e5769ef22897179ed7f82b1fc50bfa58 (diff)
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/befs/befs.h b/fs/befs/befs.h
index 3a7813ab8c95..d4751affb222 100644
--- a/fs/befs/befs.h
+++ b/fs/befs/befs.h
@@ -19,14 +19,14 @@ typedef u64 befs_blocknr_t;
19 * BeFS in memory structures 19 * BeFS in memory structures
20 */ 20 */
21 21
22typedef struct befs_mount_options { 22struct befs_mount_options {
23 kgid_t gid; 23 kgid_t gid;
24 kuid_t uid; 24 kuid_t uid;
25 int use_gid; 25 int use_gid;
26 int use_uid; 26 int use_uid;
27 int debug; 27 int debug;
28 char *iocharset; 28 char *iocharset;
29} befs_mount_options; 29};
30 30
31typedef struct befs_sb_info { 31typedef struct befs_sb_info {
32 u32 magic1; 32 u32 magic1;
@@ -52,7 +52,7 @@ typedef struct befs_sb_info {
52 befs_inode_addr indices; 52 befs_inode_addr indices;
53 u32 magic3; 53 u32 magic3;
54 54
55 befs_mount_options mount_opts; 55 struct befs_mount_options mount_opts;
56 struct nls_table *nls; 56 struct nls_table *nls;
57 57
58} befs_sb_info; 58} befs_sb_info;