git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3ed22e
)
Staging: rtl8192e: Remove unneeded brackets.
author
Vatika Harlalka
<vatikaharlalka@gmail.com>
Sun, 1 Mar 2015 15:58:19 +0000
(21:28 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 2 Mar 2015 01:09:15 +0000
(17:09 -0800)
These were detected with this Coccinelle script:
@@
identifier f1, f2, f3;
constant c;
@@
f1 =
(
- (f2 << f3)
+ f2 << f3
|
- (f2 >> f3)
+ f2 >> f3
|
- (f2 << c)
+ f2 << c
|
- (f2 >> c)
+ f2 >> c
)
Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
No differences found