diff options
Diffstat (limited to 'drivers/firewire/net.c')
| -rw-r--r-- | drivers/firewire/net.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/net.c b/drivers/firewire/net.c index 60e75e6d9104..82ba110d9d1a 100644 --- a/drivers/firewire/net.c +++ b/drivers/firewire/net.c @@ -1121,7 +1121,7 @@ static int fwnet_broadcast_start(struct fwnet_device *dev)  	max_receive = 1U << (dev->card->max_receive + 1);  	num_packets = (FWNET_ISO_PAGE_COUNT * PAGE_SIZE) / max_receive; -	ptrptr = kmalloc(sizeof(void *) * num_packets, GFP_KERNEL); +	ptrptr = kmalloc_array(num_packets, sizeof(void *), GFP_KERNEL);  	if (!ptrptr) {  		retval = -ENOMEM;  		goto failed;  |