diff options
-rw-r--r-- | sound/isa/cmi8330.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/isa/cmi8330.c b/sound/isa/cmi8330.c index f7acb8dac185..02f79d252718 100644 --- a/sound/isa/cmi8330.c +++ b/sound/isa/cmi8330.c | |||
@@ -389,12 +389,12 @@ static int __devinit snd_cmi8330_pnp(int dev, struct snd_cmi8330 *acard, | |||
389 | pdev = acard->mpu; | 389 | pdev = acard->mpu; |
390 | 390 | ||
391 | err = pnp_activate_dev(pdev); | 391 | err = pnp_activate_dev(pdev); |
392 | if (err < 0) { | 392 | if (err < 0) |
393 | snd_printk(KERN_ERR "MPU-401 PnP configure failure\n"); | 393 | snd_printk(KERN_ERR "MPU-401 PnP configure failure: will be disabled\n"); |
394 | return -EBUSY; | 394 | else { |
395 | mpuport[dev] = pnp_port_start(pdev, 0); | ||
396 | mpuirq[dev] = pnp_irq(pdev, 0); | ||
395 | } | 397 | } |
396 | mpuport[dev] = pnp_port_start(pdev, 0); | ||
397 | mpuirq[dev] = pnp_irq(pdev, 0); | ||
398 | return 0; | 398 | return 0; |
399 | } | 399 | } |
400 | #endif | 400 | #endif |