Bluetooth: Use kzalloc for drivers
authorJulia Lawall <julia@diku.dk>
Thu, 13 May 2010 20:02:03 +0000 (22:02 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 21 Jul 2010 17:39:06 +0000 (10:39 -0700)
commitf8df39f1810b02f877c1ba1eed8e0710019e3b48
treec0830933fc0bac2279a38b3225da4206f3ae48ef
parent5ee283c063a236b19e4582c675a2d8d615d5809c
Bluetooth: Use kzalloc for drivers

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>
Acked-by: Gustavo F. Padovan <padovan@profusion.mobi>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/btmrvl_sdio.c