aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorChristophe Jaillet <christophe.jaillet@wanadoo.fr>2008-06-09 16:39:53 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2008-07-21 15:16:32 -0700
commit33578bd706e40eb877bd87bfc47e5da30034afde (patch)
tree14a7f6aeff408831ae7751a8f73f4ac6d9cb62a1 /drivers
parentUSB: drivers/usb/host/isp1760-hcd.c: processor flags have type `unsigned long' (diff)
downloadlinux-dev-33578bd706e40eb877bd87bfc47e5da30034afde.tar.xz
linux-dev-33578bd706e40eb877bd87bfc47e5da30034afde.zip
USB: AccessRunner: avoid unnecessary memset
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@wanadoo.fr> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/atm/cxacru.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c
index 90583d6a5949..507a9bd0d77c 100644
--- a/drivers/usb/atm/cxacru.c
+++ b/drivers/usb/atm/cxacru.c
@@ -1052,7 +1052,6 @@ static int cxacru_bind(struct usbatm_data *usbatm_instance,
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;