From 86110b008459d09ae1fd51bda7f9ba50f6aee6e0 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Fri, 28 Sep 2012 10:22:10 +1000 Subject: [PATCH] fat-simplify-writeback_inode-checkpatch-fixes WARNING: suspect code indent for conditional statements (8, 15) #34: FILE: fs/fat/inode.c:1466: if (!ret) + ret = filemap_fdatawrite(inode->i_mapping); total: 0 errors, 1 warnings, 23 lines checked ./patches/fat-simplify-writeback_inode.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Amit Sahrawat Cc: Namjae Jeon Cc: OGAWA Hirofumi Signed-off-by: Andrew Morton --- fs/fat/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 0376816a5c67..2930a6f268b2 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -1470,7 +1470,7 @@ static int writeback_inode(struct inode *inode) */ ret = sync_inode_metadata(inode, 0); if (!ret) - ret = filemap_fdatawrite(inode->i_mapping); + = filemap_fdatawrite(inode->i_mapping); return ret; } -- 2.39.5