net: dsa: Remove dynamic allocate of routing table
With a maximum of four switches, the size of the routing table is the same as the pointer to it. Removing it makes the code simpler. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
189b0d93ec
commit
4a7704ffa8
@@ -3024,8 +3024,7 @@ static int mv88e6xxx_setup_global(struct mv88e6xxx_priv_state *ps)
|
||||
for (i = 0; i < 32; i++) {
|
||||
int nexthop = 0x1f;
|
||||
|
||||
if (ps->ds->cd->rtable &&
|
||||
i != ps->ds->index && i < ps->ds->dst->pd->nr_chips)
|
||||
if (i != ps->ds->index && i < ps->ds->dst->pd->nr_chips)
|
||||
nexthop = ps->ds->cd->rtable[i] & 0x1f;
|
||||
|
||||
err = _mv88e6xxx_reg_write(
|
||||
|
Reference in New Issue
Block a user