befs: fix style issues in inode.c
Fixing the following checkpatch.pl errors and warning: ERROR: trailing whitespace + * $ WARNING: Block comments use * on subsequent lines +/* + Validates the correctness of the befs inode ERROR: "foo * bar" should be "foo *bar" +befs_check_inode(struct super_block *sb, befs_inode * raw_inode, Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
This commit is contained in:
parent
a83179a8e9
commit
85a06b302a
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* inode.c
|
* inode.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2001 Will Dyson <will_dyson@pobox.com>
|
* Copyright (C) 2001 Will Dyson <will_dyson@pobox.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -10,12 +10,12 @@
|
||||||
#include "inode.h"
|
#include "inode.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Validates the correctness of the befs inode
|
* Validates the correctness of the befs inode
|
||||||
Returns BEFS_OK if the inode should be used, otherwise
|
* Returns BEFS_OK if the inode should be used, otherwise
|
||||||
returns BEFS_BAD_INODE
|
* returns BEFS_BAD_INODE
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
befs_check_inode(struct super_block *sb, befs_inode * raw_inode,
|
befs_check_inode(struct super_block *sb, befs_inode *raw_inode,
|
||||||
befs_blocknr_t inode)
|
befs_blocknr_t inode)
|
||||||
{
|
{
|
||||||
u32 magic1 = fs32_to_cpu(sb, raw_inode->magic1);
|
u32 magic1 = fs32_to_cpu(sb, raw_inode->magic1);
|
||||||
|
|
Loading…
Reference in New Issue