From: Christophe Jaillet Remove an explicit memset(.., 0, ...) to a variable allocated with kzalloc (i.e. 'card_info' array of the structure 'instance'). Signed-off-by: Christophe Jaillet Signed-off-by: Andrew Morton --- drivers/usb/atm/cxacru.c | 1 - 1 file changed, 1 deletion(-) diff -puN drivers/usb/atm/cxacru.c~accessrunner-avoid-unnecessary-memset drivers/usb/atm/cxacru.c --- a/drivers/usb/atm/cxacru.c~accessrunner-avoid-unnecessary-memset +++ a/drivers/usb/atm/cxacru.c @@ -1052,7 +1052,6 @@ static int cxacru_bind(struct usbatm_dat instance->usbatm = usbatm_instance; instance->modem_type = (struct cxacru_modem_type *) id->driver_info; - memset(instance->card_info, 0, sizeof(instance->card_info)); mutex_init(&instance->poll_state_serialize); instance->poll_state = CXPOLL_STOPPED; _