]> err.no Git - linux-2.6/blobdiff - sound/pci/es1938.c
[PATCH] libata: indent and whitespace change
[linux-2.6] / sound / pci / es1938.c
index b3f78a5bb6409a9175ed55297d0e36429d59999a..17fa80c23870b8631b6b2a40d5269ee0d2d531c9 100644 (file)
@@ -1494,7 +1494,7 @@ static int __devinit snd_es1938_create(snd_card_t * card,
                 return -ENXIO;
         }
 
-       chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
+       chip = kzalloc(sizeof(*chip), GFP_KERNEL);
        if (chip == NULL) {
                pci_disable_device(pci);
                return -ENOMEM;
@@ -1746,6 +1746,7 @@ static void __devexit snd_es1938_remove(struct pci_dev *pci)
 
 static struct pci_driver driver = {
        .name = "ESS ES1938 (Solo-1)",
+       .owner = THIS_MODULE,
        .id_table = snd_es1938_ids,
        .probe = snd_es1938_probe,
        .remove = __devexit_p(snd_es1938_remove),