diff options
Diffstat (limited to 'sound/drivers/mtpav.c')
-rw-r--r-- | sound/drivers/mtpav.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/drivers/mtpav.c b/sound/drivers/mtpav.c index 6b26305ff0e6..355da33cbd22 100644 --- a/sound/drivers/mtpav.c +++ b/sound/drivers/mtpav.c | |||
@@ -698,9 +698,9 @@ static int __devinit snd_mtpav_probe(struct platform_device *dev) | |||
698 | int err; | 698 | int err; |
699 | struct mtpav *mtp_card; | 699 | struct mtpav *mtp_card; |
700 | 700 | ||
701 | card = snd_card_new(index, id, THIS_MODULE, sizeof(*mtp_card)); | 701 | err = snd_card_create(index, id, THIS_MODULE, sizeof(*mtp_card), &card); |
702 | if (! card) | 702 | if (err < 0) |
703 | return -ENOMEM; | 703 | return err; |
704 | 704 | ||
705 | mtp_card = card->private_data; | 705 | mtp_card = card->private_data; |
706 | spin_lock_init(&mtp_card->spinlock); | 706 | spin_lock_init(&mtp_card->spinlock); |