Commit 06e878ef authored by Krishna Kumar's avatar Krishna Kumar Committed by David S. Miller

[NET]: Remove unnecessary local var initialization.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 16d2c25c
......@@ -334,7 +334,6 @@ static void neigh_hash_grow(struct neigh_table *tbl, unsigned long new_entries)
for (i = 0; i < old_entries; i++) {
struct neighbour *n, *next;
next = NULL;
for (n = old_hash[i]; n; n = next) {
unsigned int hash_val = tbl->hash(n->primary_key, n->dev);
......
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