Skip to content
Permalink
Browse files
net: dsa: point out the tail taggers
From a  recent commit with the same summary:

"The Marvell 88E6060 uses tag_trailer.c and the KSZ8795, KSZ9477 and
KSZ9893 switches also use tail tags."

Set "tail_tag" to true for KSZ8795 and KSZ9477 which were missing in the
original commit.

Fixes: 7a6ffe7 [net] ("net: dsa: point out the tail taggers")
Signed-off-by: Christian Eggers <ceggers@arri.de>
  • Loading branch information
ceggers-arri authored and intel-lab-lkp committed Oct 16, 2020
1 parent 2ecbc1f commit aaa07cad29bf365264beb2c2e2668db83ca31923
Showing 1 changed file with 2 additions and 0 deletions.
@@ -123,6 +123,7 @@ static const struct dsa_device_ops ksz8795_netdev_ops = {
.xmit = ksz8795_xmit,
.rcv = ksz8795_rcv,
.overhead = KSZ_INGRESS_TAG_LEN,
.tail_tag = true,
};

DSA_TAG_DRIVER(ksz8795_netdev_ops);
@@ -199,6 +200,7 @@ static const struct dsa_device_ops ksz9477_netdev_ops = {
.xmit = ksz9477_xmit,
.rcv = ksz9477_rcv,
.overhead = KSZ9477_INGRESS_TAG_LEN,
.tail_tag = true,
};

DSA_TAG_DRIVER(ksz9477_netdev_ops);

0 comments on commit aaa07ca

Please sign in to comment.