From: Luis de Bethencourt Date: Sun, 14 Aug 2016 16:29:47 +0000 (+0100) Subject: befs: fix style issues in inode.c X-Git-Tag: v4.14-rc1~1789^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85a06b302a9dbe06e4bcfed715875e42b07531f6;p=platform%2Fkernel%2Flinux-rpi.git 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 --- diff --git a/fs/befs/inode.c b/fs/befs/inode.c index fa4b718..5367a64 100644 --- a/fs/befs/inode.c +++ b/fs/befs/inode.c @@ -1,6 +1,6 @@ /* * inode.c - * + * * Copyright (C) 2001 Will Dyson */ @@ -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);