mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-07 08:28:21 +07:00
net: dsa: Fix dsa_is_user_port() test inversion
During the conversion to dsa_is_user_port(), a condition ended up being
reversed, which would prevent the creation of any user port when using
the legacy binding and/or platform data, fix that.
Fixes: 4a5b85ffe2
("net: dsa: use dsa_is_user_port everywhere")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
59bb883532
commit
5a9f8df68e
@ -194,7 +194,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds,
|
|||||||
ds->ports[i].dn = cd->port_dn[i];
|
ds->ports[i].dn = cd->port_dn[i];
|
||||||
ds->ports[i].cpu_dp = dst->cpu_dp;
|
ds->ports[i].cpu_dp = dst->cpu_dp;
|
||||||
|
|
||||||
if (dsa_is_user_port(ds, i))
|
if (!dsa_is_user_port(ds, i))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
ret = dsa_slave_create(&ds->ports[i]);
|
ret = dsa_slave_create(&ds->ports[i]);
|
||||||
|
Loading…
Reference in New Issue
Block a user