summaryrefslogtreecommitdiffstats
path: root/fs/befs
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@osg.samsung.com>2016-08-09 17:24:09 -0400
committerLuis de Bethencourt <luisbg@osg.samsung.com>2016-10-08 05:01:33 -0400
commit11674239f927c900bc50f8f2f5a4ec3e4a3df89b (patch)
treec0b50662a5a471f8eacdead06c246d45b8983b1b /fs/befs
parentbbe1bd0b6bba138eaf441c6c964bde9866da8808 (diff)
befs: fix comment style
The description of befs_load_sb was confusing the kernel-doc system since, because it starts with /**, it thinks it will document the function with kernel-doc formatting. Which it isn't. Fix other comment style issues in the file while we are at it. Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com> Signed-off-by: Salah Triki <salah.triki@gmail.com>
Diffstat (limited to 'fs/befs')
-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) {