aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/wusbcore
diff options
context:
space:
mode:
authorDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-10-15 09:50:10 -0400
committerDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-10-15 09:50:10 -0400
commit92c4d9bd1648b3eaca6b8b8f8932eec390ba7327 (patch)
tree86e696c08aca7d30284319f1f6adabeeeace1f18 /drivers/usb/wusbcore
parent45c16cd9287819cf1c870f2d8e7738c4c90512ca (diff)
uwb: use kcalloc where appropriate
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/usb/wusbcore')
-rw-r--r--drivers/usb/wusbcore/mmc.c2
-rw-r--r--drivers/usb/wusbcore/wa-xfer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/wusbcore/mmc.c b/drivers/usb/wusbcore/mmc.c
index e5390b77aaaa..76907286f156 100644
--- a/drivers/usb/wusbcore/mmc.c
+++ b/drivers/usb/wusbcore/mmc.c
@@ -43,7 +43,7 @@
43int wusbhc_mmcie_create(struct wusbhc *wusbhc) 43int wusbhc_mmcie_create(struct wusbhc *wusbhc)
44{ 44{
45 u8 mmcies = wusbhc->mmcies_max; 45 u8 mmcies = wusbhc->mmcies_max;
46 wusbhc->mmcie = kzalloc(mmcies * sizeof(wusbhc->mmcie[0]), GFP_KERNEL); 46 wusbhc->mmcie = kcalloc(mmcies, sizeof(wusbhc->mmcie[0]), GFP_KERNEL);
47 if (wusbhc->mmcie == NULL) 47 if (wusbhc->mmcie == NULL)
48 return -ENOMEM; 48 return -ENOMEM;
49 mutex_init(&wusbhc->mmcie_mutex); 49 mutex_init(&wusbhc->mmcie_mutex);
diff --git a/drivers/usb/wusbcore/wa-xfer.c b/drivers/usb/wusbcore/wa-xfer.c
index 7d192f3e6742..c038635d1c64 100644
--- a/drivers/usb/wusbcore/wa-xfer.c
+++ b/drivers/usb/wusbcore/wa-xfer.c
@@ -674,7 +674,7 @@ static int __wa_xfer_setup_segs(struct wa_xfer *xfer, size_t xfer_hdr_size)
674 size_t buf_itr, buf_size, buf_itr_size; 674 size_t buf_itr, buf_size, buf_itr_size;
675 675
676 result = -ENOMEM; 676 result = -ENOMEM;
677 xfer->seg = kzalloc(xfer->segs * sizeof(xfer->seg[0]), GFP_ATOMIC); 677 xfer->seg = kcalloc(xfer->segs, sizeof(xfer->seg[0]), GFP_ATOMIC);
678 if (xfer->seg == NULL) 678 if (xfer->seg == NULL)
679 goto error_segs_kzalloc; 679 goto error_segs_kzalloc;
680 buf_itr = 0; 680 buf_itr = 0;