sdio: kmalloc + memset conversion to kzalloc

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
Mariusz Kozlowski 2007-08-01 00:05:24 +02:00 committed by Pierre Ossman
parent eb65946892
commit 9f2fcf9939
1 changed files with 1 additions and 3 deletions

View File

@ -221,12 +221,10 @@ struct sdio_func *sdio_alloc_func(struct mmc_card *card)
{
struct sdio_func *func;
func = kmalloc(sizeof(struct sdio_func), GFP_KERNEL);
func = kzalloc(sizeof(struct sdio_func), GFP_KERNEL);
if (!func)
return ERR_PTR(-ENOMEM);
memset(func, 0, sizeof(struct sdio_func));
func->card = card;
device_initialize(&func->dev);