mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
net: dsa: Allow compiling out legacy support
Introduce a configuration option: CONFIG_NET_DSA_LEGACY allowing to compile out support for the old platform device and Device Tree binding registration. Support for these configurations is scheduled to be removed in 4.17. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a8168b6cee
commit
2a93c1a365
8 changed files with 56 additions and 22 deletions
|
@ -941,6 +941,26 @@ static const struct ethtool_ops dsa_slave_ethtool_ops = {
|
|||
.set_rxnfc = dsa_slave_set_rxnfc,
|
||||
};
|
||||
|
||||
/* legacy way, bypassing the bridge *****************************************/
|
||||
int dsa_legacy_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
|
||||
struct net_device *dev,
|
||||
const unsigned char *addr, u16 vid,
|
||||
u16 flags)
|
||||
{
|
||||
struct dsa_port *dp = dsa_slave_to_port(dev);
|
||||
|
||||
return dsa_port_fdb_add(dp, addr, vid);
|
||||
}
|
||||
|
||||
int dsa_legacy_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
|
||||
struct net_device *dev,
|
||||
const unsigned char *addr, u16 vid)
|
||||
{
|
||||
struct dsa_port *dp = dsa_slave_to_port(dev);
|
||||
|
||||
return dsa_port_fdb_del(dp, addr, vid);
|
||||
}
|
||||
|
||||
static const struct net_device_ops dsa_slave_netdev_ops = {
|
||||
.ndo_open = dsa_slave_open,
|
||||
.ndo_stop = dsa_slave_close,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue