[ALSA] sound/pci: Drop unnecessary continue
authorJulia Lawall <julia@diku.dk>
Wed, 14 Nov 2007 13:30:43 +0000 (14:30 +0100)
committerJaroslav Kysela <perex@perex.cz>
Thu, 31 Jan 2008 16:29:23 +0000 (17:29 +0100)
commit3a749730afc224ac11f4eff3df58a42494a0f035
tree703b5c200b18b46fe2ade8151ed179204f3b061f
parent61dc35de78d2b28e3c28fd7a352ef8c4ff63f42d
[ALSA] sound/pci: Drop unnecessary continue

Continue is not needed at the bottom of a loop.
The semantic patch implementing this change is as follows:
@@
@@
for (...;...;...) {
   ...
   if (...) {
     ...
-   continue;
   }
}

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
sound/pci/intel8x0.c