diff options
author | Julia Lawall <julia@diku.dk> | 2007-11-14 08:30:43 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-01-31 11:29:23 -0500 |
commit | 3a749730afc224ac11f4eff3df58a42494a0f035 (patch) | |
tree | 703b5c200b18b46fe2ade8151ed179204f3b061f /sound | |
parent | 61dc35de78d2b28e3c28fd7a352ef8c4ff63f42d (diff) |
[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>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/intel8x0.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c index 4bb97646a67a..312373c81e7d 100644 --- a/sound/pci/intel8x0.c +++ b/sound/pci/intel8x0.c | |||
@@ -2146,7 +2146,6 @@ static int __devinit snd_intel8x0_mixer(struct intel8x0 *chip, int ac97_clock, | |||
2146 | snd_printk(KERN_ERR "Unable to initialize codec #%d\n", i); | 2146 | snd_printk(KERN_ERR "Unable to initialize codec #%d\n", i); |
2147 | if (i == 0) | 2147 | if (i == 0) |
2148 | goto __err; | 2148 | goto __err; |
2149 | continue; | ||
2150 | } | 2149 | } |
2151 | } | 2150 | } |
2152 | /* tune up the primary codec */ | 2151 | /* tune up the primary codec */ |