The patch titled AccessRunner: avoid unnecessary memset has been removed from the -mm tree. Its filename was accessrunner-avoid-unnecessary-memset.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: AccessRunner: avoid unnecessary memset From: Christophe Jaillet <christophe.jaillet@xxxxxxxxxx> 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 <christophe.jaillet@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- 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; _ Patches currently in -mm which might be from christophe.jaillet@xxxxxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html