Message ID | 20201027105117.23052-2-tobias@waldekranz.com |
---|---|
State | New |
Headers | show |
Series | net: dsa: link aggregation support | expand |
On Tue, 27 Oct 2020 11:51:14 +0100 Tobias Waldekranz <tobias@waldekranz.com> wrote: > The policy is to use ethertyped DSA for all devices that are capable > of doing so, which the Peridot is. What is the benefit here?
diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index bd297ae7cf9e..536ee6cff779 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -5100,7 +5100,7 @@ static const struct mv88e6xxx_info mv88e6xxx_table[] = { .atu_move_port_mask = 0x1f, .pvt = true, .multi_chip = true, - .tag_protocol = DSA_TAG_PROTO_DSA, + .tag_protocol = DSA_TAG_PROTO_EDSA, .ptp_support = true, .ops = &mv88e6390_ops, }, @@ -5124,7 +5124,7 @@ static const struct mv88e6xxx_info mv88e6xxx_table[] = { .atu_move_port_mask = 0x1f, .pvt = true, .multi_chip = true, - .tag_protocol = DSA_TAG_PROTO_DSA, + .tag_protocol = DSA_TAG_PROTO_EDSA, .ptp_support = true, .ops = &mv88e6390x_ops, },
The policy is to use ethertyped DSA for all devices that are capable of doing so, which the Peridot is. Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> --- drivers/net/dsa/mv88e6xxx/chip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)