net: dsa: Add a ports structure and use it in the switch structure
There are going to be more per-port members added to the switch structure. So add a port structure and move the netdev into it. 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
149cafd790
commit
c8b098086b
@@ -1183,12 +1183,12 @@ int dsa_slave_create(struct dsa_switch *ds, struct device *parent,
|
||||
p->old_link = -1;
|
||||
p->old_duplex = -1;
|
||||
|
||||
ds->ports[port] = slave_dev;
|
||||
ds->ports[port].netdev = slave_dev;
|
||||
ret = register_netdev(slave_dev);
|
||||
if (ret) {
|
||||
netdev_err(master, "error %d registering interface %s\n",
|
||||
ret, slave_dev->name);
|
||||
ds->ports[port] = NULL;
|
||||
ds->ports[port].netdev = NULL;
|
||||
free_netdev(slave_dev);
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user