diff options
author | Andrew Lunn <andrew@lunn.ch> | 2016-03-11 23:01:39 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-14 19:43:11 (GMT) |
commit | ec777e6b4254648be51146d4e7d735ee3d06bd13 (patch) | |
tree | 92809901fac32cd105b1f6b52274a52010b28888 /net | |
parent | 3a44514ff979d7b0192a9f67445509f4ea7dfe2f (diff) | |
download | linux-ec777e6b4254648be51146d4e7d735ee3d06bd13.tar.xz |
dsa: dsa: Fix freeing of fixed-phys from user ports.
All ports types can have a fixed PHY associated with it. Remove the
check which limits removal to only CPU and DSA ports.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/dsa/dsa.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index 1018e7d..f100f34 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -443,9 +443,6 @@ static void dsa_switch_destroy(struct dsa_switch *ds) /* Remove any fixed link PHYs */ for (port = 0; port < DSA_MAX_PORTS; port++) { - if (!(dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))) - continue; - port_dn = cd->port_dn[port]; if (of_phy_is_fixed_link(port_dn)) { phydev = of_phy_find_device(port_dn); |