diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-03-27 02:36:28 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-29 22:23:49 +0200 |
commit | acdaffcc890a29262c9bb47e287b62488c85eb59 (patch) | |
tree | 53f6701ef582afec91dbf5f8e82f1463a33ce2f9 /drivers/net/dsa/mv88e6352.c | |
parent | hv_netvsc: remove vmbus_are_subchannels_present() in rndis_filter_device_add() (diff) | |
download | linux-acdaffcc890a29262c9bb47e287b62488c85eb59.tar.xz linux-acdaffcc890a29262c9bb47e287b62488c85eb59.zip |
net: dsa: mv88e6xxx: Factor out common initialization code
Code used and needed in mv886xxx.c should be initialized there as well,
so factor it out from the individual initialization files.
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6352.c')
-rw-r--r-- | drivers/net/dsa/mv88e6352.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/dsa/mv88e6352.c b/drivers/net/dsa/mv88e6352.c index 7bc5998384c6..75cf9e1c5a44 100644 --- a/drivers/net/dsa/mv88e6352.c +++ b/drivers/net/dsa/mv88e6352.c @@ -385,9 +385,10 @@ static int mv88e6352_setup(struct dsa_switch *ds) int ret; int i; - mutex_init(&ps->smi_mutex); - mutex_init(&ps->stats_mutex); - mutex_init(&ps->phy_mutex); + ret = mv88e6xxx_setup_common(ds); + if (ret < 0) + return ret; + mutex_init(&ps->eeprom_mutex); ps->id = REG_READ(REG_PORT(0), 0x03) & 0xfff0; |