From 70e750d211c0833bec6bf64229d0c3d254b89830 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Thu, 13 Sep 2012 11:01:25 +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 c7531b298b3f..008ea94f0b9f 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -1464,7 +1464,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