From patchwork Thu Jun 9 09:04:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [07/30] UBIFS: remove unnecessary brackets Date: Wed, 08 Jun 2011 23:04:47 -0000 From: Artem Bityutskiy X-Patchwork-Id: 99680 Message-Id: <1307610310-28691-8-git-send-email-dedekind1@gmail.com> To: linux-mtd@lists.infradead.org From: Artem Bityutskiy Remove unnecessary brackets in "inode->i_flags |= (S_NOCMTIME)" statement to make the code not look silly. Signed-off-by: Artem Bityutskiy --- fs/ubifs/dir.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c index ef5abd3..c6cbdd0 100644 --- a/fs/ubifs/dir.c +++ b/fs/ubifs/dir.c @@ -102,7 +102,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir, * UBIFS has to fully control "clean <-> dirty" transitions of inodes * to make budgeting work. */ - inode->i_flags |= (S_NOCMTIME); + inode->i_flags |= S_NOCMTIME; inode_init_owner(inode, dir, mode); inode->i_mtime = inode->i_atime = inode->i_ctime =