diff options
author | Juergen Beisert <jbe@pengutronix.de> | 2017-04-18 10:48:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-04-20 13:48:54 -0400 |
commit | e8fe177a62feaf576cd9869d9bfedf9c9574bb12 (patch) | |
tree | 1a810507e31bc391445d12e85b45261ae1cc5776 /net/dsa/dsa.c | |
parent | 8dc7d11f1dbd3659bfba371aeb72b539db12a2d1 (diff) | |
download | linux-e8fe177a62feaf576cd9869d9bfedf9c9574bb12.tar.bz2 |
net: dsa: add support for the SMSC-LAN9303 tagging format
To define the outgoing port and to discover the incoming port a regular
VLAN tag is used by the LAN9303. But its VID meaning is 'special'.
This tag handler/filter depends on some hardware features which must be
enabled in the device to provide and make use of this special VLAN tag
to control the destination and the source of an ethernet packet.
Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa.c')
-rw-r--r-- | net/dsa/dsa.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index e117047174fc..26130ae438da 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -58,6 +58,9 @@ const struct dsa_device_ops *dsa_device_ops[DSA_TAG_LAST] = { #ifdef CONFIG_NET_DSA_TAG_MTK [DSA_TAG_PROTO_MTK] = &mtk_netdev_ops, #endif +#ifdef CONFIG_NET_DSA_TAG_LAN9303 + [DSA_TAG_PROTO_LAN9303] = &lan9303_netdev_ops, +#endif [DSA_TAG_PROTO_NONE] = &none_ops, }; |