]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
befs: fix style issues in inode.c
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Sun, 14 Aug 2016 16:29:47 +0000 (17:29 +0100)
committerLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 22 Dec 2016 11:25:20 +0000 (11:25 +0000)
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>
fs/befs/inode.c

index fa4b718de597394cf4b50be1fb877937d8f5935d..5367a6470a69fb59c0db37e321ff9d9c343d5519 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * inode.c
- * 
+ *
  * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com>
  */
 
 #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);