Commit 027611b8 authored by Stefan Richter's avatar Stefan Richter

ieee1394: eth1394: correct a memset argument

The old argument calculated the correct value in a wrong way.
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent d06c1dda
......@@ -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 */
......
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