Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+6 -6
+6 -6
fs/befs/inode.c
··· 1 1 /* 2 2 * inode.c 3 - * 3 + * 4 4 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com> 5 5 */ 6 6 ··· 10 10 #include "inode.h" 11 11 12 12 /* 13 - Validates the correctness of the befs inode 14 - Returns BEFS_OK if the inode should be used, otherwise 15 - returns BEFS_BAD_INODE 16 - */ 13 + * Validates the correctness of the befs inode 14 + * Returns BEFS_OK if the inode should be used, otherwise 15 + * returns BEFS_BAD_INODE 16 + */ 17 17 int 18 - befs_check_inode(struct super_block *sb, befs_inode * raw_inode, 18 + befs_check_inode(struct super_block *sb, befs_inode *raw_inode, 19 19 befs_blocknr_t inode) 20 20 { 21 21 u32 magic1 = fs32_to_cpu(sb, raw_inode->magic1);