net: dsa: mv888e6xxx: do not use netdev printing
The mv888e6xxx driver accesses a port's netdev mostly for printing. This is bad for 2 reasons: DSA and CPU ports do not have a netdev pointer; it doesn't give us a correct picture of why a DSA driver might need to access a port's netdev. Instead simply use dev_* printing functions with chip->dev (or ds->dev depending on the scope, both guaranteed to exist), with a p%d prefix for the target port. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
fff88030b3
commit
774439e532
@@ -489,8 +489,7 @@ static int mv88e6xxx_port_setup_mac(struct mv88e6xxx_chip *chip, int port,
|
||||
err = 0;
|
||||
restore_link:
|
||||
if (chip->info->ops->port_set_link(chip, port, link))
|
||||
netdev_err(chip->ds->ports[port].netdev,
|
||||
"failed to restore MAC's link\n");
|
||||
dev_err(chip->dev, "p%d: failed to restore MAC's link\n", port);
|
||||
|
||||
return err;
|
||||
}
|
||||
@@ -514,7 +513,7 @@ static void mv88e6xxx_adjust_link(struct dsa_switch *ds, int port,
|
||||
mutex_unlock(&chip->reg_lock);
|
||||
|
||||
if (err && err != -EOPNOTSUPP)
|
||||
netdev_err(ds->ports[port].netdev, "failed to configure MAC\n");
|
||||
dev_err(ds->dev, "p%d: failed to configure MAC\n", port);
|
||||
}
|
||||
|
||||
static int mv88e6xxx_stats_snapshot(struct mv88e6xxx_chip *chip, int port)
|
||||
@@ -941,7 +940,7 @@ static void mv88e6xxx_port_stp_state_set(struct dsa_switch *ds, int port,
|
||||
mutex_unlock(&chip->reg_lock);
|
||||
|
||||
if (err)
|
||||
netdev_err(ds->ports[port].netdev, "failed to update state\n");
|
||||
dev_err(ds->dev, "p%d: failed to update state\n", port);
|
||||
}
|
||||
|
||||
static int mv88e6xxx_atu_setup(struct mv88e6xxx_chip *chip)
|
||||
@@ -1009,7 +1008,7 @@ static void mv88e6xxx_port_fast_age(struct dsa_switch *ds, int port)
|
||||
mutex_unlock(&chip->reg_lock);
|
||||
|
||||
if (err)
|
||||
netdev_err(ds->ports[port].netdev, "failed to flush ATU\n");
|
||||
dev_err(ds->dev, "p%d: failed to flush ATU\n", port);
|
||||
}
|
||||
|
||||
static int mv88e6xxx_vtu_setup(struct mv88e6xxx_chip *chip)
|
||||
@@ -1214,10 +1213,9 @@ static int mv88e6xxx_port_check_hw_vlan(struct dsa_switch *ds, int port,
|
||||
if (!ds->ports[i].bridge_dev)
|
||||
continue;
|
||||
|
||||
netdev_warn(ds->ports[port].netdev,
|
||||
"hardware VLAN %d already used by %s\n",
|
||||
vlan.vid,
|
||||
netdev_name(ds->ports[i].bridge_dev));
|
||||
dev_err(ds->dev, "p%d: hw VLAN %d already used by %s\n",
|
||||
port, vlan.vid,
|
||||
netdev_name(ds->ports[i].bridge_dev));
|
||||
err = -EOPNOTSUPP;
|
||||
goto unlock;
|
||||
}
|
||||
@@ -1311,13 +1309,12 @@ static void mv88e6xxx_port_vlan_add(struct dsa_switch *ds, int port,
|
||||
|
||||
for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid)
|
||||
if (_mv88e6xxx_port_vlan_add(chip, port, vid, member))
|
||||
netdev_err(ds->ports[port].netdev,
|
||||
"failed to add VLAN %d%c\n",
|
||||
vid, untagged ? 'u' : 't');
|
||||
dev_err(ds->dev, "p%d: failed to add VLAN %d%c\n", port,
|
||||
vid, untagged ? 'u' : 't');
|
||||
|
||||
if (pvid && mv88e6xxx_port_set_pvid(chip, port, vlan->vid_end))
|
||||
netdev_err(ds->ports[port].netdev, "failed to set PVID %d\n",
|
||||
vlan->vid_end);
|
||||
dev_err(ds->dev, "p%d: failed to set PVID %d\n", port,
|
||||
vlan->vid_end);
|
||||
|
||||
mutex_unlock(&chip->reg_lock);
|
||||
}
|
||||
@@ -1451,7 +1448,8 @@ static void mv88e6xxx_port_fdb_add(struct dsa_switch *ds, int port,
|
||||
mutex_lock(&chip->reg_lock);
|
||||
if (mv88e6xxx_port_db_load_purge(chip, port, fdb->addr, fdb->vid,
|
||||
GLOBAL_ATU_DATA_STATE_UC_STATIC))
|
||||
netdev_err(ds->ports[port].netdev, "failed to load unicast MAC address\n");
|
||||
dev_err(ds->dev, "p%d: failed to load unicast MAC address\n",
|
||||
port);
|
||||
mutex_unlock(&chip->reg_lock);
|
||||
}
|
||||
|
||||
@@ -3793,7 +3791,8 @@ static void mv88e6xxx_port_mdb_add(struct dsa_switch *ds, int port,
|
||||
mutex_lock(&chip->reg_lock);
|
||||
if (mv88e6xxx_port_db_load_purge(chip, port, mdb->addr, mdb->vid,
|
||||
GLOBAL_ATU_DATA_STATE_MC_STATIC))
|
||||
netdev_err(ds->ports[port].netdev, "failed to load multicast MAC address\n");
|
||||
dev_err(ds->dev, "p%d: failed to load multicast MAC address\n",
|
||||
port);
|
||||
mutex_unlock(&chip->reg_lock);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user