]> git.karo-electronics.de Git - linux-beck.git/commit
befs: fix style issues in linuxvfs.c
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Sun, 14 Aug 2016 16:59:11 +0000 (17:59 +0100)
committerLuis de Bethencourt <luisbg@osg.samsung.com>
Thu, 22 Dec 2016 11:25:21 +0000 (11:25 +0000)
commit62b80719dfe126f73e417d7011dfb5ef53c6a203
treec71a7c6a295a3b22d6b55815704eb450c71f98bb
parent1ca7087e59cba48a58bf5e6594a67e8ccbead7e2
befs: fix style issues in linuxvfs.c

Fix the following type of checkpatch.pl issues:
WARNING: line over 80 characters
+static struct dentry *befs_lookup(struct inode *, struct dentry *, unsigned int);

ERROR: code indent should use tabs where possible
+        if (!bi)$

WARNING: please, no spaces at the start of a line
+        if (!bi)$

WARNING: labels should not be indented
+      unacquire_bh:

WARNING: space prohibited between function name and open parenthesis '('
+                                             sizeof (struct befs_inode_info),

WARNING: braces {} are not necessary for single statement blocks
+       if (!*out) {
+               return -ENOMEM;
+       }

WARNING: Block comments use a trailing */ on a separate line
+        * in special cases */

WARNING: Missing a blank line after declarations
+               int token;
+               if (!*p)

ERROR: do not use assignment in if condition
+       if (!(bh = sb_bread(sb, sb_block))) {

ERROR: space prohibited after that open parenthesis '('
+       if( befs_sb->num_blocks > ~((sector_t)0) ) {

ERROR: space prohibited before that close parenthesis ')'
+       if( befs_sb->num_blocks > ~((sector_t)0) ) {

ERROR: space required before the open parenthesis '('
+       if( befs_sb->num_blocks > ~((sector_t)0) ) {

Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
fs/befs/linuxvfs.c