diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2017-11-11 00:22:52 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-11-13 02:34:54 +0100 |
commit | 5ed4e3eb021762fee584ce65620bc822131c7aa0 (patch) | |
tree | 5f3ed5e21d4dfaacb13beec852583aa4ab64f268 /net/dsa/legacy.c | |
parent | net/sched/sch_red.c: work around gcc-4.4.4 anon union initializer issue (diff) | |
download | linux-5ed4e3eb021762fee584ce65620bc822131c7aa0.tar.xz linux-5ed4e3eb021762fee584ce65620bc822131c7aa0.zip |
net: dsa: Pass a port to get_tag_protocol()
A number of drivers want to check whether the configured CPU port is a
possible configuration for enabling tagging, pass down the CPU port
number so they verify that.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/legacy.c')
-rw-r--r-- | net/dsa/legacy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/legacy.c b/net/dsa/legacy.c index 4863e3e398b6..84611d7fcfa2 100644 --- a/net/dsa/legacy.c +++ b/net/dsa/legacy.c @@ -151,7 +151,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, const struct dsa_device_ops *tag_ops; enum dsa_tag_protocol tag_protocol; - tag_protocol = ops->get_tag_protocol(ds); + tag_protocol = ops->get_tag_protocol(ds, dst->cpu_dp->index); tag_ops = dsa_resolve_tag_protocol(tag_protocol); if (IS_ERR(tag_ops)) return PTR_ERR(tag_ops); |