[ALSA] Replace with kzalloc() - others
[deliverable/linux.git] / sound / pcmcia / pdaudiocf / pdaudiocf_core.c
index a2132e3763dd7b18be026b2cd9165a0cbac6c22e..0208c54896b36e26d031f8737dfb92e2bfb0b5fa 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;
This page took 0.036209 seconds and 5 git commands to generate.