diff options
Diffstat (limited to 'fs/befs/inode.c')
-rw-r--r-- | fs/befs/inode.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/befs/inode.c b/fs/befs/inode.c index fa4b718de597..5367a6470a69 100644 --- a/fs/befs/inode.c +++ b/fs/befs/inode.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * inode.c | 2 | * inode.c |
3 | * | 3 | * |
4 | * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com> | 4 | * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com> |
5 | */ | 5 | */ |
6 | 6 | ||
@@ -10,12 +10,12 @@ | |||
10 | #include "inode.h" | 10 | #include "inode.h" |
11 | 11 | ||
12 | /* | 12 | /* |
13 | Validates the correctness of the befs inode | 13 | * Validates the correctness of the befs inode |
14 | Returns BEFS_OK if the inode should be used, otherwise | 14 | * Returns BEFS_OK if the inode should be used, otherwise |
15 | returns BEFS_BAD_INODE | 15 | * returns BEFS_BAD_INODE |
16 | */ | 16 | */ |
17 | int | 17 | int |
18 | befs_check_inode(struct super_block *sb, befs_inode * raw_inode, | 18 | befs_check_inode(struct super_block *sb, befs_inode *raw_inode, |
19 | befs_blocknr_t inode) | 19 | befs_blocknr_t inode) |
20 | { | 20 | { |
21 | u32 magic1 = fs32_to_cpu(sb, raw_inode->magic1); | 21 | u32 magic1 = fs32_to_cpu(sb, raw_inode->magic1); |