diff options
author | Deepak Saxena <dsaxena@plexity.net> | 2005-11-07 04:01:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:54:00 -0500 |
commit | 089b1dbbde28f0f641c20beabba28fa89ab4fab9 (patch) | |
tree | d95a59688897569f2aa875ec5a9576caaedfc2cc /drivers/bluetooth/bfusb.c | |
parent | f5e3c2faa20615e900ab26bd957f898400435924 (diff) |
[PATCH] bluetooth: kmalloc + memset -> kzalloc conversion
Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
Cc: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/bluetooth/bfusb.c')
-rw-r--r-- | drivers/bluetooth/bfusb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index 1e9db0156ea7..067e27893e4a 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c | |||
@@ -673,13 +673,11 @@ static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *i | |||
673 | } | 673 | } |
674 | 674 | ||
675 | /* Initialize control structure and load firmware */ | 675 | /* Initialize control structure and load firmware */ |
676 | if (!(bfusb = kmalloc(sizeof(struct bfusb), GFP_KERNEL))) { | 676 | if (!(bfusb = kzalloc(sizeof(struct bfusb), GFP_KERNEL))) { |
677 | BT_ERR("Can't allocate memory for control structure"); | 677 | BT_ERR("Can't allocate memory for control structure"); |
678 | goto done; | 678 | goto done; |
679 | } | 679 | } |
680 | 680 | ||
681 | memset(bfusb, 0, sizeof(struct bfusb)); | ||
682 | |||
683 | bfusb->udev = udev; | 681 | bfusb->udev = udev; |
684 | bfusb->bulk_in_ep = bulk_in_ep->desc.bEndpointAddress; | 682 | bfusb->bulk_in_ep = bulk_in_ep->desc.bEndpointAddress; |
685 | bfusb->bulk_out_ep = bulk_out_ep->desc.bEndpointAddress; | 683 | bfusb->bulk_out_ep = bulk_out_ep->desc.bEndpointAddress; |