summaryrefslogtreecommitdiffstats
path: root/drivers/net/dsa/mv88e6131.c
diff options
context:
space:
mode:
authorAndrew Lunn2015-05-06 01:09:48 +0200
committerDavid S. Miller2015-05-09 22:05:52 +0200
commitdbde9e6667166f17d6d70a08becb05c596cb8fb5 (patch)
tree9dd6035e591b5aab8f32278db6555104dd8035dc /drivers/net/dsa/mv88e6131.c
parentnet: dsa: Centralise global and port setup code into mv88e6xxx. (diff)
downloadkernel-qcow2-linux-dbde9e6667166f17d6d70a08becb05c596cb8fb5.tar.gz
kernel-qcow2-linux-dbde9e6667166f17d6d70a08becb05c596cb8fb5.tar.xz
kernel-qcow2-linux-dbde9e6667166f17d6d70a08becb05c596cb8fb5.zip
net: dsa: Centralize setting up ports
Now that setting up a port is identical for all switches, centralisers the code looping over all the ports to set them up. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6131.c')
-rw-r--r--drivers/net/dsa/mv88e6131.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/net/dsa/mv88e6131.c b/drivers/net/dsa/mv88e6131.c
index 310c1cf37830..1a5a15bf16df 100644
--- a/drivers/net/dsa/mv88e6131.c
+++ b/drivers/net/dsa/mv88e6131.c
@@ -86,7 +86,6 @@ static int mv88e6131_setup_global(struct dsa_switch *ds)
static int mv88e6131_setup(struct dsa_switch *ds)
{
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
- int i;
int ret;
ret = mv88e6xxx_setup_common(ds);
@@ -118,13 +117,7 @@ static int mv88e6131_setup(struct dsa_switch *ds)
if (ret < 0)
return ret;
- for (i = 0; i < ps->num_ports; i++) {
- ret = mv88e6xxx_setup_port(ds, i);
- if (ret < 0)
- return ret;
- }
-
- return 0;
+ return mv88e6xxx_setup_ports(ds);
}
static int mv88e6131_port_to_phy_addr(struct dsa_switch *ds, int port)