Commit fe02e1cc authored by David S. Miller's avatar David S. Miller

Merge branch 'dsa-phys_port_name'

Florian Fainelli says:

====================
net: dsa: Implement ndo_get_phys_port_name()

This patch series implements ndo_get_phys_port_name() so we can revert
ndo_get_phys_id() which was (ab)used in the DSA layer.
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 9f91484f 592050b2
...@@ -983,13 +983,13 @@ static void dsa_slave_poll_controller(struct net_device *dev) ...@@ -983,13 +983,13 @@ static void dsa_slave_poll_controller(struct net_device *dev)
} }
#endif #endif
static int dsa_slave_get_phys_port_id(struct net_device *dev, static int dsa_slave_get_phys_port_name(struct net_device *dev,
struct netdev_phys_item_id *ppid) char *name, size_t len)
{ {
struct dsa_slave_priv *p = netdev_priv(dev); struct dsa_slave_priv *p = netdev_priv(dev);
ppid->id_len = sizeof(p->port); if (snprintf(name, len, "p%d", p->port) >= len)
memcpy(ppid->id, &p->port, ppid->id_len); return -EINVAL;
return 0; return 0;
} }
...@@ -1041,7 +1041,7 @@ static const struct net_device_ops dsa_slave_netdev_ops = { ...@@ -1041,7 +1041,7 @@ static const struct net_device_ops dsa_slave_netdev_ops = {
.ndo_bridge_getlink = switchdev_port_bridge_getlink, .ndo_bridge_getlink = switchdev_port_bridge_getlink,
.ndo_bridge_setlink = switchdev_port_bridge_setlink, .ndo_bridge_setlink = switchdev_port_bridge_setlink,
.ndo_bridge_dellink = switchdev_port_bridge_dellink, .ndo_bridge_dellink = switchdev_port_bridge_dellink,
.ndo_get_phys_port_id = dsa_slave_get_phys_port_id, .ndo_get_phys_port_name = dsa_slave_get_phys_port_name,
}; };
static const struct switchdev_ops dsa_slave_switchdev_ops = { static const struct switchdev_ops dsa_slave_switchdev_ops = {
......
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