summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Nicoara <anicoara@uwaterloo.ca>2014-09-08 19:02:49 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-08 20:26:33 (GMT)
commite0301d0d28a2e55da5b68338d6b9f933620da63b (patch)
tree29d7a66e7d3bebc920ff91dde6bb0eb61822072f
parent4bb3f83d47a60109d8bc9d47e547392d9b6c390c (diff)
downloadlinux-e0301d0d28a2e55da5b68338d6b9f933620da63b.tar.xz
staging: ozwpan: use kmalloc_array over kmalloc with multiply
Cleanup checkpatch.pl warnings. Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/ozwpan/ozhcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c
index ba2168f..e880452 100644
--- a/drivers/staging/ozwpan/ozhcd.c
+++ b/drivers/staging/ozwpan/ozhcd.c
@@ -1315,8 +1315,8 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd,
if (num_iface) {
struct oz_interface *iface;
- iface = kmalloc(num_iface*sizeof(struct oz_interface),
- mem_flags | __GFP_ZERO);
+ iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
+ mem_flags | __GFP_ZERO);
if (!iface)
return -ENOMEM;
spin_lock_bh(&ozhcd->hcd_lock);