Skip to content

Commit

Permalink
befs: fix comment style
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Salah Triki <[email protected]>
  • Loading branch information
luisbg committed Oct 8, 2016
1 parent bbe1bd0 commit 1167423
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions fs/befs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@
#include "befs.h"
#include "super.h"

/**
/*
* befs_load_sb -- Read from disk and properly byteswap all the fields
* of the befs superblock
*
*
*
*
*/
int
befs_load_sb(struct super_block *sb, befs_super_block * disk_sb)
Expand Down Expand Up @@ -93,8 +89,8 @@ befs_check_sb(struct super_block *sb)
}

/*
* block_shift and block_size encode the same information
* in different ways as a consistency check.
* block_shift and block_size encode the same information
* in different ways as a consistency check.
*/

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

0 comments on commit 1167423

Please sign in to comment.