diff options
Diffstat (limited to 'sound/pci/rme9652/hdspm.c')
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index 71231cf1b2b0..d4b4e0d0fee8 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c | |||
@@ -4503,10 +4503,10 @@ static int __devinit snd_hdspm_probe(struct pci_dev *pci, | |||
4503 | return -ENOENT; | 4503 | return -ENOENT; |
4504 | } | 4504 | } |
4505 | 4505 | ||
4506 | card = snd_card_new(index[dev], id[dev], | 4506 | err = snd_card_create(index[dev], id[dev], |
4507 | THIS_MODULE, sizeof(struct hdspm)); | 4507 | THIS_MODULE, sizeof(struct hdspm), &card); |
4508 | if (!card) | 4508 | if (err < 0) |
4509 | return -ENOMEM; | 4509 | return err; |
4510 | 4510 | ||
4511 | hdspm = card->private_data; | 4511 | hdspm = card->private_data; |
4512 | card->private_free = snd_hdspm_card_free; | 4512 | card->private_free = snd_hdspm_card_free; |