X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=sound%2Fpci%2Fazt3328.c;h=d5261bdec583d5fbac6bcfe438d35e8d4ac705c3;hb=1dcee12591320d79e4fc5bcdc4aa8a2522b7afdb;hp=72bba7b2d983811bbba99a098cbfccbd5740ef20;hpb=3357d4c75f1fb67e7304998c4ad4e9a9fed66fa4;p=linux-2.6-omap-h63xx.git diff --git a/sound/pci/azt3328.c b/sound/pci/azt3328.c index 72bba7b2d98..d5261bdec58 100644 --- a/sound/pci/azt3328.c +++ b/sound/pci/azt3328.c @@ -1345,7 +1345,7 @@ static int __devinit snd_azf3328_create(snd_card_t * card, if ((err = pci_enable_device(pci)) < 0) return err; - chip = kcalloc(1, sizeof(*chip), GFP_KERNEL); + chip = kzalloc(sizeof(*chip), GFP_KERNEL); if (chip == NULL) { pci_disable_device(pci); return -ENOMEM; @@ -1511,6 +1511,7 @@ static void __devexit snd_azf3328_remove(struct pci_dev *pci) static struct pci_driver driver = { .name = "AZF3328", + .owner = THIS_MODULE, .id_table = snd_azf3328_ids, .probe = snd_azf3328_probe, .remove = __devexit_p(snd_azf3328_remove),