Skip to content

Commit 1167423

Browse files
committed
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>
1 parent bbe1bd0 commit 1167423

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

fs/befs/super.c

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,9 @@
1313
#include "befs.h"
1414
#include "super.h"
1515

16-
/**
16+
/*
1717
* befs_load_sb -- Read from disk and properly byteswap all the fields
1818
* of the befs superblock
19-
*
20-
*
21-
*
22-
*
2319
*/
2420
int
2521
befs_load_sb(struct super_block *sb, befs_super_block * disk_sb)
@@ -93,8 +89,8 @@ befs_check_sb(struct super_block *sb)
9389
}
9490

9591
/*
96-
* block_shift and block_size encode the same information
97-
* in different ways as a consistency check.
92+
* block_shift and block_size encode the same information
93+
* in different ways as a consistency check.
9894
*/
9995

10096
if ((1 << befs_sb->block_shift) != befs_sb->block_size) {

0 commit comments

Comments
 (0)