projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a29fa9d
)
UBIFS: remove unnecessary brackets
author
Artem Bityutskiy
<Artem.Bityutskiy@nokia.com>
Fri, 27 May 2011 12:50:39 +0000
(15:50 +0300)
committer
Artem Bityutskiy
<dedekind1@gmail.com>
Mon, 4 Jul 2011 07:54:27 +0000
(10:54 +0300)
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>
fs/ubifs/dir.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/ubifs/dir.c
b/fs/ubifs/dir.c
index ef5abd38f0bf32a90f30ef6994c81b6d864f93e8..c6cbdd0f636c08fa74138284fb95fd5de26d4558 100644
(file)
--- 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 =