staging: wilc1000: host_int_init: replace kmalloc with kzalloc

This patch replaces kmalloc with kzalloc in host_int_init.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chaehyun Lim 2015-09-22 18:34:55 +09:00 committed by Greg Kroah-Hartman
parent 67ec31b8c2
commit 27a82ebf92

View File

@ -6373,13 +6373,12 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
/*Allocate host interface private structure*/ /*Allocate host interface private structure*/
pstrWFIDrv = kmalloc(sizeof(tstrWILC_WFIDrv), GFP_KERNEL); pstrWFIDrv = kzalloc(sizeof(tstrWILC_WFIDrv), GFP_KERNEL);
if (pstrWFIDrv == NULL) { if (pstrWFIDrv == NULL) {
s32Error = -ENOMEM; s32Error = -ENOMEM;
PRINT_ER("Failed to allocate memory\n"); PRINT_ER("Failed to allocate memory\n");
goto _fail_timer_2; goto _fail_timer_2;
} }
memset(pstrWFIDrv, 0, sizeof(tstrWILC_WFIDrv));
*phWFIDrv = pstrWFIDrv; *phWFIDrv = pstrWFIDrv;
err = add_handler_in_list(pstrWFIDrv); err = add_handler_in_list(pstrWFIDrv);
if (err) { if (err) {