mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 06:31:58 +02:00
powerpc/pseries: Drop unnecessary continue
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>
This commit is contained in:
parent
9e82bf0141
commit
2172d66068
|
|
@ -555,7 +555,6 @@ static int cmm_mem_going_offline(void *arg)
|
|||
pa_last = pa_last->next;
|
||||
free_page((unsigned long)cmm_page_list);
|
||||
cmm_page_list = pa_last;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
pa_curr = pa_curr->next;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user