summaryrefslogtreecommitdiffstats
path: root/sound/pci/rme32.c
diff options
context:
space:
mode:
authorJames Morris <jmorris@namei.org>2009-03-26 22:28:11 +0100
committerJames Morris <jmorris@namei.org>2009-03-26 22:28:11 +0100
commit1987f17d2266e882862528841429b5bf67bc8fe5 (patch)
tree5c3fbee88018ab7259a18c10e6320e575d0ed679 /sound/pci/rme32.c
parentsmack: convert smack to standard linux lists (diff)
parentMerge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff)
downloadlinux-1987f17d2266e882862528841429b5bf67bc8fe5.tar.xz
linux-1987f17d2266e882862528841429b5bf67bc8fe5.zip
Merge branch 'master' into next
Diffstat (limited to 'sound/pci/rme32.c')
-rw-r--r--sound/pci/rme32.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sound/pci/rme32.c b/sound/pci/rme32.c
index e7ef3a1a25a8..d7b966e7c4cf 100644
--- a/sound/pci/rme32.c
+++ b/sound/pci/rme32.c
@@ -1941,9 +1941,10 @@ snd_rme32_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
return -ENOENT;
}
- if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE,
- sizeof(struct rme32))) == NULL)
- return -ENOMEM;
+ err = snd_card_create(index[dev], id[dev], THIS_MODULE,
+ sizeof(struct rme32), &card);
+ if (err < 0)
+ return err;
card->private_free = snd_rme32_card_free;
rme32 = (struct rme32 *) card->private_data;
rme32->card = card;