projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bb3f83
)
staging: ozwpan: use kmalloc_array over kmalloc with multiply
author
Adrian Nicoara
<anicoara@uwaterloo.ca>
Mon, 8 Sep 2014 19:02:49 +0000
(15:02 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 8 Sep 2014 20:26:33 +0000
(13:26 -0700)
Cleanup checkpatch.pl warnings.
Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ozwpan/ozhcd.c
patch
|
blob
|
history
diff --git
a/drivers/staging/ozwpan/ozhcd.c
b/drivers/staging/ozwpan/ozhcd.c
index ba2168f53559aff3df7a1d3c6b150589a3e5ddb6..e8804522860731a01492e89c598596ff1162b3f7 100644
(file)
--- 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);