Commit e0301d0d authored by Adrian Nicoara's avatar Adrian Nicoara Committed by Greg Kroah-Hartman

staging: ozwpan: use kmalloc_array over kmalloc with multiply

Cleanup checkpatch.pl warnings.
Signed-off-by: default avatarAdrian Nicoara <anicoara@uwaterloo.ca>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4bb3f83d
...@@ -1315,7 +1315,7 @@ static int oz_build_endpoints_for_config(struct usb_hcd *hcd, ...@@ -1315,7 +1315,7 @@ 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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment