diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2016-05-09 20:22:57 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-09 21:26:13 +0300 |
commit | b9729e53ade9be2637b46ac98fd85c7eac1b77c8 (patch) | |
tree | 247a61cf9be11dd66784cfcd6d933d58d73ec127 /drivers/net/dsa/mv88e6131.c | |
parent | a1a6a4d1f76aab009e6e0b1003b9c7bca3991e9c (diff) | |
download | linux-b9729e53ade9be2637b46ac98fd85c7eac1b77c8.tar.xz |
net: dsa: mv88e6131: use EDSA tag protocol
6131 is the only driver to set the tag protocol to DSA_TAG_PROTO_DSA.
Since it works fine with DSA_TAG_PROTO_EDSA, change its value, like all
other mv88e6xxx drivers.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6131.c')
-rw-r--r-- | drivers/net/dsa/mv88e6131.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/mv88e6131.c b/drivers/net/dsa/mv88e6131.c index 22952be7f4de..bbad199b50aa 100644 --- a/drivers/net/dsa/mv88e6131.c +++ b/drivers/net/dsa/mv88e6131.c @@ -59,7 +59,7 @@ static const char *mv88e6131_drv_probe(struct device *dsa_dev, } struct dsa_switch_driver mv88e6131_switch_driver = { - .tag_protocol = DSA_TAG_PROTO_DSA, + .tag_protocol = DSA_TAG_PROTO_EDSA, .probe = mv88e6131_drv_probe, .setup = mv88e6xxx_setup, .set_addr = mv88e6xxx_set_addr, |