aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/mixart
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-03-23 19:35:35 -0400
committerTakashi Iwai <tiwai@suse.de>2009-03-23 19:35:35 -0400
commitdec14f8c0eff54549e5747f8a4d1dc6c0347e2dd (patch)
treeaf1744c17c4bacad4c9524ad096d5a65f6c25c73 /sound/pci/mixart
parent8e0ee43bc2c3e19db56a4adaa9a9b04ce885cd84 (diff)
parentb1a0aac05f044e78a589bfd7a9e2334aa640eb45 (diff)
Merge branch 'topic/snd_card_new-err' into for-linus
Diffstat (limited to 'sound/pci/mixart')
-rw-r--r--sound/pci/mixart/mixart.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/mixart/mixart.c b/sound/pci/mixart/mixart.c
index bb162507fe6c..c1eb84a14c42 100644
--- a/sound/pci/mixart/mixart.c
+++ b/sound/pci/mixart/mixart.c
@@ -1366,12 +1366,12 @@ static int __devinit snd_mixart_probe(struct pci_dev *pci,
1366 else 1366 else
1367 idx = index[dev] + i; 1367 idx = index[dev] + i;
1368 snprintf(tmpid, sizeof(tmpid), "%s-%d", id[dev] ? id[dev] : "MIXART", i); 1368 snprintf(tmpid, sizeof(tmpid), "%s-%d", id[dev] ? id[dev] : "MIXART", i);
1369 card = snd_card_new(idx, tmpid, THIS_MODULE, 0); 1369 err = snd_card_create(idx, tmpid, THIS_MODULE, 0, &card);
1370 1370
1371 if (! card) { 1371 if (err < 0) {
1372 snd_printk(KERN_ERR "cannot allocate the card %d\n", i); 1372 snd_printk(KERN_ERR "cannot allocate the card %d\n", i);
1373 snd_mixart_free(mgr); 1373 snd_mixart_free(mgr);
1374 return -ENOMEM; 1374 return err;
1375 } 1375 }
1376 1376
1377 strcpy(card->driver, CARD_NAME); 1377 strcpy(card->driver, CARD_NAME);