summaryrefslogtreecommitdiffstats
path: root/drivers/usb/wusbcore/mmc.c
diff options
context:
space:
mode:
authorDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-10-15 14:50:10 +0100
committerDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-10-15 14:50:10 +0100
commit92c4d9bd1648b3eaca6b8b8f8932eec390ba7327 (patch)
tree86e696c08aca7d30284319f1f6adabeeeace1f18 /drivers/usb/wusbcore/mmc.c
parent45c16cd9287819cf1c870f2d8e7738c4c90512ca (diff)
downloadlinux-stable-92c4d9bd1648b3eaca6b8b8f8932eec390ba7327.tar.gz
linux-stable-92c4d9bd1648b3eaca6b8b8f8932eec390ba7327.tar.bz2
linux-stable-92c4d9bd1648b3eaca6b8b8f8932eec390ba7327.zip
uwb: use kcalloc where appropriate
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/usb/wusbcore/mmc.c')
-rw-r--r--drivers/usb/wusbcore/mmc.c2
1 files changed, 1 insertions, 1 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 @@
int wusbhc_mmcie_create(struct wusbhc *wusbhc)
{
u8 mmcies = wusbhc->mmcies_max;
- wusbhc->mmcie = kzalloc(mmcies * sizeof(wusbhc->mmcie[0]), GFP_KERNEL);
+ wusbhc->mmcie = kcalloc(mmcies, sizeof(wusbhc->mmcie[0]), GFP_KERNEL);
if (wusbhc->mmcie == NULL)
return -ENOMEM;
mutex_init(&wusbhc->mmcie_mutex);