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:
9e82bf0
)
powerpc/pseries: Drop unnecessary continue
author
Himangi Saraogi
<himangi774@gmail.com>
Wed, 13 Aug 2014 09:18:47 +0000
(14:48 +0530)
committer
Michael Ellerman
<mpe@ellerman.id.au>
Tue, 23 Sep 2014 01:00:40 +0000
(11:00 +1000)
Continue is not needed at the bottom of a loop.
The Coccinelle semantic patch implementing this change is:
@@
@@
for (...;...;...) {
...
if (...) {
...
- continue;
}
}
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
No differences found