mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
ieee1394: eth1394: correct a memset argument
The old argument calculated the correct value in a wrong way. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
d06c1ddad9
commit
027611b842
@ -472,7 +472,7 @@ static void ether1394_reset_priv(struct net_device *dev, int set_mtu)
|
||||
|
||||
spin_lock_irqsave(&priv->lock, flags);
|
||||
|
||||
memset(priv->ud_list, 0, sizeof(struct node_entry*) * ALL_NODES);
|
||||
memset(priv->ud_list, 0, sizeof(priv->ud_list));
|
||||
priv->bc_maxpayload = 512;
|
||||
|
||||
/* Determine speed limit */
|
||||
|
Loading…
Reference in New Issue
Block a user