From: Ryusuke Konishi Date: Mon, 23 May 2016 23:23:00 +0000 (-0700) Subject: nilfs2: fix white space issue in nilfs_mount() X-Git-Tag: v4.7~289^2~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fa7c32094d806c23b35f9f51bcefb3148d3eb54;p=platform%2Fkernel%2Flinux-amlogic.git nilfs2: fix white space issue in nilfs_mount() Fix the following checkpatch.pl error and warnings: ERROR: code indent should use tabs where possible #1317: FILE: super.c:1317: + ^I^Is_new = true;$ WARNING: please, no space before tabs #1317: FILE: super.c:1317: + ^I^Is_new = true;$ WARNING: please, no spaces at the start of a line #1317: FILE: super.c:1317: + ^I^Is_new = true;$ Link: http://lkml.kernel.org/r/1461935747-10380-2-git-send-email-konishi.ryusuke@lab.ntt.co.jp Signed-off-by: Ryusuke Konishi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 7f5d3d9..e05d184 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c @@ -1316,7 +1316,7 @@ nilfs_mount(struct file_system_type *fs_type, int flags, } if (!s->s_root) { - s_new = true; + s_new = true; /* New superblock instance created */ s->s_mode = mode;