diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-05-27 08:50:39 -0400 |
---|---|---|
committer | Artem Bityutskiy <dedekind1@gmail.com> | 2011-07-04 03:54:27 -0400 |
commit | 12e776a0882def45e7ee50918016968b392ac7bd (patch) | |
tree | bccc67f49b74a8f019940672ece19755133eb1b7 /fs/ubifs/dir.c | |
parent | a29fa9dfa4d5d1b962825c79f19d9b6f3f15843b (diff) |
UBIFS: remove unnecessary brackets
Remove unnecessary brackets in "inode->i_flags |= (S_NOCMTIME)" statement to
make the code not look silly.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/dir.c')
-rw-r--r-- | 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 ef5abd38f0bf..c6cbdd0f636c 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, | |||
102 | * UBIFS has to fully control "clean <-> dirty" transitions of inodes | 102 | * UBIFS has to fully control "clean <-> dirty" transitions of inodes |
103 | * to make budgeting work. | 103 | * to make budgeting work. |
104 | */ | 104 | */ |
105 | inode->i_flags |= (S_NOCMTIME); | 105 | inode->i_flags |= S_NOCMTIME; |
106 | 106 | ||
107 | inode_init_owner(inode, dir, mode); | 107 | inode_init_owner(inode, dir, mode); |
108 | inode->i_mtime = inode->i_atime = inode->i_ctime = | 108 | inode->i_mtime = inode->i_atime = inode->i_ctime = |