aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/befs/super.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/fs/befs/super.c b/fs/befs/super.c
index c36745d2b45f..80b93c0a1a7b 100644
--- a/fs/befs/super.c
+++ b/fs/befs/super.c
@@ -13,13 +13,9 @@
13#include "befs.h" 13#include "befs.h"
14#include "super.h" 14#include "super.h"
15 15
16/** 16/*
17 * befs_load_sb -- Read from disk and properly byteswap all the fields 17 * befs_load_sb -- Read from disk and properly byteswap all the fields
18 * of the befs superblock 18 * of the befs superblock
19 *
20 *
21 *
22 *
23 */ 19 */
24int 20int
25befs_load_sb(struct super_block *sb, befs_super_block * disk_sb) 21befs_load_sb(struct super_block *sb, befs_super_block * disk_sb)
@@ -93,8 +89,8 @@ befs_check_sb(struct super_block *sb)
93 } 89 }
94 90
95 /* 91 /*
96 * block_shift and block_size encode the same information 92 * block_shift and block_size encode the same information
97 * in different ways as a consistency check. 93 * in different ways as a consistency check.
98 */ 94 */
99 95
100 if ((1 << befs_sb->block_shift) != befs_sb->block_size) { 96 if ((1 << befs_sb->block_shift) != befs_sb->block_size) {