[ALSA] Replace with kzalloc() - others
[safe/jmp/linux-2.6] / sound / pcmcia / pdaudiocf / pdaudiocf_core.c
index a2132e3..0208c54 100644 (file)
@@ -151,7 +151,7 @@ pdacf_t *snd_pdacf_create(snd_card_t *card)
 {
        pdacf_t *chip;
 
-       chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
+       chip = kzalloc(sizeof(*chip), GFP_KERNEL);
        if (chip == NULL)
                return NULL;
        chip->card = card;