diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-08-14 17:29:47 +0100 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-12-22 11:25:20 +0000 |
commit | 85a06b302a9dbe06e4bcfed715875e42b07531f6 (patch) | |
tree | cd15282e9f480b48505cac460e782e469cce0711 /fs/befs | |
parent | a83179a8e95ec70a84d3a9a04b6062fa1884aebf (diff) | |
download | linux-85a06b302a9dbe06e4bcfed715875e42b07531f6.tar.gz linux-85a06b302a9dbe06e4bcfed715875e42b07531f6.tar.bz2 linux-85a06b302a9dbe06e4bcfed715875e42b07531f6.zip |
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>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/inode.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/befs/inode.c b/fs/befs/inode.c index fa4b718de597..5367a6470a69 100644 --- a/fs/befs/inode.c +++ b/fs/befs/inode.c @@ -1,6 +1,6 @@ /* * inode.c - * + * * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com> */ @@ -10,12 +10,12 @@ #include "inode.h" /* - Validates the correctness of the befs inode - Returns BEFS_OK if the inode should be used, otherwise - returns BEFS_BAD_INODE -*/ + * Validates the correctness of the befs inode + * Returns BEFS_OK if the inode should be used, otherwise + * returns BEFS_BAD_INODE + */ 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) { u32 magic1 = fs32_to_cpu(sb, raw_inode->magic1); |