remarkable-linux/fs/befs
Luis de Bethencourt 62b80719df 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>
2016-12-22 11:25:21 +00:00
..
befs.h befs: fix typo in befs_sb_info 2016-10-08 10:01:27 +01:00
befs_fs_types.h
btree.c befs: fix typos in btree.c 2016-10-08 10:01:34 +01:00
btree.h befs: constify stuff a bit 2016-05-10 14:24:06 -04:00
ChangeLog
datastream.c befs: befs: fix style issues in datastream.c 2016-10-08 10:01:36 +01:00
datastream.h befs: constify stuff a bit 2016-05-10 14:24:06 -04:00
debug.c befs: fix style issues in debug.c 2016-12-22 11:25:19 +00:00
endian.h
inode.c befs: fix style issues in inode.c 2016-12-22 11:25:20 +00:00
inode.h
io.c befs: fix style issues in io.c 2016-12-22 11:25:20 +00:00
io.h fs: befs: replace befs_bread by sb_bread 2016-10-08 10:01:12 +01:00
Kconfig
linuxvfs.c befs: fix style issues in linuxvfs.c 2016-12-22 11:25:21 +00:00
Makefile BEFS: logging cleanup 2014-04-03 16:21:25 -07:00
super.c befs: fix style issues in super.c 2016-10-08 10:01:34 +01:00
super.h
TODO