Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c64ab12e authored by DongOh Shin's avatar DongOh Shin Committed by Jaegeuk Kim
Browse files

f2fs: fix 3 coding style errors in f2fs.h



Two coding style errors below have been resolved:
"Macros with complex values should be enclosed in parentheses"

And a coding style error below has been resolved:
"space prohibited before that ',' (ctx:WxW)"

Signed-off-by: default avatarDongOh Shin <doscode.kr@gmail.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 8ed59745
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -108,9 +108,9 @@ struct f2fs_mount_info {
#define F2FS_HAS_FEATURE(sb, mask)					\
	((F2FS_SB(sb)->raw_super->feature & cpu_to_le32(mask)) != 0)
#define F2FS_SET_FEATURE(sb, mask)					\
	F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask)
	(F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask))
#define F2FS_CLEAR_FEATURE(sb, mask)					\
	F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask)
	(F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask))

/*
 * For checkpoint manager