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>
This commit is contained in:
parent
4bb3f83d47
commit
e0301d0d28
1 changed files with 2 additions and 2 deletions
|
@ -1315,8 +1315,8 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd,
|
||||||
if (num_iface) {
|
if (num_iface) {
|
||||||
struct oz_interface *iface;
|
struct oz_interface *iface;
|
||||||
|
|
||||||
iface = kmalloc(num_iface*sizeof(struct oz_interface),
|
iface = kmalloc_array(num_iface, sizeof(struct oz_interface),
|
||||||
mem_flags | __GFP_ZERO);
|
mem_flags | __GFP_ZERO);
|
||||||
if (!iface)
|
if (!iface)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
spin_lock_bh(&ozhcd->hcd_lock);
|
spin_lock_bh(&ozhcd->hcd_lock);
|
||||||
|
|
Loading…
Add table
Reference in a new issue