diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-11-18 08:37:59 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-11-18 08:37:59 +0100 |
commit | 67f2db24fbfdb63495d995d6fbbbe42980004ee0 (patch) | |
tree | da3f3a4d4828f32922635ff4b87df8de853622fd /sound/isa/opti9xx | |
parent | b67cad932c4e45edca2f4da2ee4f46001ba17363 (diff) |
ALSA: opti-miro: Fix missing semicolon
To fix a build error
sound/isa/opti9xx/miro.c:1281: error: expected ';' before '}' token
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/opti9xx')
-rw-r--r-- | sound/isa/opti9xx/miro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/opti9xx/miro.c b/sound/isa/opti9xx/miro.c index b8170adeeff..17761030aff 100644 --- a/sound/isa/opti9xx/miro.c +++ b/sound/isa/opti9xx/miro.c @@ -1277,7 +1277,7 @@ static int __devinit snd_miro_probe(struct device *devptr, unsigned int n) if (mpu_port < 0) { snd_card_free(card); snd_printk(KERN_ERR "unable to find a free MPU401 port\n"); - return -EBUSY + return -EBUSY; } } if (miro->irq == SNDRV_AUTO_IRQ) { |