ALSA: Convert to snd_card_create() in sound/pci/*
[deliverable/linux.git] / sound / pci / rme9652 / hdsp.c
index 44d0c15e2b71a150cf2643194a978e6c6fa7ee95..05b3f795a1680167a3d09c3666fc3ea7c8272d82 100644 (file)
@@ -5158,8 +5158,10 @@ static int __devinit snd_hdsp_probe(struct pci_dev *pci,
                return -ENOENT;
        }
 
-       if (!(card = snd_card_new(index[dev], id[dev], THIS_MODULE, sizeof(struct hdsp))))
-               return -ENOMEM;
+       err = snd_card_create(index[dev], id[dev], THIS_MODULE,
+                             sizeof(struct hdsp), &card);
+       if (err < 0)
+               return err;
 
        hdsp = (struct hdsp *) card->private_data;
        card->private_free = snd_hdsp_card_free;
This page took 0.024436 seconds and 5 git commands to generate.