]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - sound/pci/ctxfi/ctatc.c
ALSA: sound/pci/ctxfi/ctatc.c: fix error return code
[karo-tx-linux.git] / sound / pci / ctxfi / ctatc.c
index 8e40262d4117cf923c9972711177ab5b8b445dcd..2f6e9c762d3fd184dd995b17a9485faf050dffeb 100644 (file)
@@ -1725,8 +1725,10 @@ int __devinit ct_atc_create(struct snd_card *card, struct pci_dev *pci,
        atc_connect_resources(atc);
 
        atc->timer = ct_timer_new(atc);
-       if (!atc->timer)
+       if (!atc->timer) {
+               err = -ENOMEM;
                goto error1;
+       }
 
        err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, atc, &ops);
        if (err < 0)