Home
last modified time | relevance | path

Searched hist:"550 a8b691ca67761bbf382d98fbd81d215f1d7f0" (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/sound/pci/asihpi/
H A Dhpi6000.cdiff 550a8b691ca67761bbf382d98fbd81d215f1d7f0 Thu May 13 14:58:37 CDT 2010 Julia Lawall <julia@diku.dk> ALSA: sound/pci/asihpi: Use kzalloc

Use kzalloc rather than the combination of kmalloc and memset.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression x,size,flags;
statement S;
@@

-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
if (x == NULL) S
-memset(x, 0, size);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
H A Dhpi6205.cdiff 550a8b691ca67761bbf382d98fbd81d215f1d7f0 Thu May 13 14:58:37 CDT 2010 Julia Lawall <julia@diku.dk> ALSA: sound/pci/asihpi: Use kzalloc

Use kzalloc rather than the combination of kmalloc and memset.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression x,size,flags;
statement S;
@@

-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
if (x == NULL) S
-memset(x, 0, size);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>