Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 298953
b: refs/heads/master
c: 38be95d
h: refs/heads/master
i:
  298951: a096d88
v: v3
  • Loading branch information
Julia Lawall authored and Takashi Iwai committed Apr 10, 2012
1 parent 0811498 commit 70ec4c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 156d14da4cfc4fe01b705d6e2d22e44c0a2dbecd
refs/heads/master: 38be95dd3d314bd393a26f6e441ae2c57ef7f064
6 changes: 4 additions & 2 deletions trunk/sound/isa/sscape.c
Original file line number Diff line number Diff line change
Expand Up @@ -1019,13 +1019,15 @@ static int __devinit create_sscape(int dev, struct snd_card *card)
irq_cfg = get_irq_config(sscape->type, irq[dev]);
if (irq_cfg == INVALID_IRQ) {
snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", irq[dev]);
return -ENXIO;
err = -ENXIO;
goto _release_dma;
}

mpu_irq_cfg = get_irq_config(sscape->type, mpu_irq[dev]);
if (mpu_irq_cfg == INVALID_IRQ) {
snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", mpu_irq[dev]);
return -ENXIO;
err = -ENXIO;
goto _release_dma;
}

/*
Expand Down

0 comments on commit 70ec4c2

Please sign in to comment.