Skip to content

Commit

Permalink
ALSA: opti-miro: Fix missing semicolon
Browse files Browse the repository at this point in the history
To fix a build error
  sound/isa/opti9xx/miro.c:1281: error: expected ';' before '}' token

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Nov 18, 2009
1 parent b67cad9 commit 67f2db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/isa/opti9xx/miro.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 67f2db2

Please sign in to comment.