ALSA: Ensure PXA runtime data is initialised
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 22 Oct 2008 12:27:49 +0000 (13:27 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 22 Oct 2008 15:22:01 +0000 (17:22 +0200)
The rest of the code relies on the runtime data being zero initialised
so we need to use kzalloc() to allocate it.

Reported-by: Oliver Ford <ipaqlinux@oliford.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/arm/pxa2xx-pcm-lib.c

index 1c93eb7..75a0d74 100644 (file)
@@ -194,7 +194,7 @@ int __pxa2xx_pcm_open(struct snd_pcm_substream *substream)
                goto out;
 
        ret = -ENOMEM;
-       rtd = kmalloc(sizeof(*rtd), GFP_KERNEL);
+       rtd = kzalloc(sizeof(*rtd), GFP_KERNEL);
        if (!rtd)
                goto out;
        rtd->dma_desc_array =