diff options
author | Duncan Sands <baldrick@free.fr> | 2006-01-13 03:38:22 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-31 20:23:39 -0500 |
commit | 9a734efec36c991a74610c6c81d28d4222e1c02b (patch) | |
tree | 22af3801a3dc494085cd9e3218876320121a9986 /drivers/usb/atm/cxacru.c | |
parent | 0dfcd3e4444e88285ee7c199d0cbda21551d8c5d (diff) |
[PATCH] USBATM: kzalloc conversion
Convert kmalloc + memset to kzalloc.
Signed-off-by: Duncan Sands <baldrick@free.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/atm/cxacru.c')
-rw-r--r-- | drivers/usb/atm/cxacru.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c index 0b02a6d9f243..675fdbd5967e 100644 --- a/drivers/usb/atm/cxacru.c +++ b/drivers/usb/atm/cxacru.c | |||
@@ -673,14 +673,12 @@ static int cxacru_bind(struct usbatm_data *usbatm_instance, | |||
673 | int ret; | 673 | int ret; |
674 | 674 | ||
675 | /* instance init */ | 675 | /* instance init */ |
676 | instance = kmalloc(sizeof(*instance), GFP_KERNEL); | 676 | instance = kzalloc(sizeof(*instance), GFP_KERNEL); |
677 | if (!instance) { | 677 | if (!instance) { |
678 | dbg("cxacru_bind: no memory for instance data"); | 678 | dbg("cxacru_bind: no memory for instance data"); |
679 | return -ENOMEM; | 679 | return -ENOMEM; |
680 | } | 680 | } |
681 | 681 | ||
682 | memset(instance, 0, sizeof(*instance)); | ||
683 | |||
684 | instance->usbatm = usbatm_instance; | 682 | instance->usbatm = usbatm_instance; |
685 | instance->modem_type = (struct cxacru_modem_type *) id->driver_info; | 683 | instance->modem_type = (struct cxacru_modem_type *) id->driver_info; |
686 | 684 | ||