powerpc/pseries: Drop unnecessary continue
authorHimangi Saraogi <himangi774@gmail.com>
Wed, 13 Aug 2014 09:18:47 +0000 (14:48 +0530)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 23 Sep 2014 01:00:40 +0000 (11:00 +1000)
commit2172d6606843cbad58498310a28125e7a700e658
treeb78ebaecff26facbad67e7c939b8827ad91b4e1c
parent9e82bf014195d6f0054982c463575cdce24292be
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>
arch/powerpc/platforms/pseries/cmm.c