Commit f03ae5f9 authored by Andrew Lunn's avatar Andrew Lunn Committed by David S. Miller

dsa: mv88e6171: Add support for mv88e6172

The mv88e6172 is very similar to the mv88e6171.  So extend the
mv88e6171 driver to support it.
Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0c6965dd
...@@ -37,13 +37,13 @@ config NET_DSA_MV88E6123_61_65 ...@@ -37,13 +37,13 @@ config NET_DSA_MV88E6123_61_65
ethernet switch chips. ethernet switch chips.
config NET_DSA_MV88E6171 config NET_DSA_MV88E6171
tristate "Marvell 88E6171 ethernet switch chip support" tristate "Marvell 88E6171/6172 ethernet switch chip support"
select NET_DSA select NET_DSA
select NET_DSA_MV88E6XXX select NET_DSA_MV88E6XXX
select NET_DSA_TAG_EDSA select NET_DSA_TAG_EDSA
---help--- ---help---
This enables support for the Marvell 88E6171 ethernet switch This enables support for the Marvell 88E6171/6172 ethernet switch
chip. chips.
config NET_DSA_MV88E6352 config NET_DSA_MV88E6352
tristate "Marvell 88E6176/88E6352 ethernet switch chip support" tristate "Marvell 88E6176/88E6352 ethernet switch chip support"
......
/* net/dsa/mv88e6171.c - Marvell 88e6171 switch chip support /* net/dsa/mv88e6171.c - Marvell 88e6171/8826172 switch chip support
* Copyright (c) 2008-2009 Marvell Semiconductor * Copyright (c) 2008-2009 Marvell Semiconductor
* Copyright (c) 2014 Claudio Leite <leitec@staticky.com> * Copyright (c) 2014 Claudio Leite <leitec@staticky.com>
* *
...@@ -29,6 +29,8 @@ static char *mv88e6171_probe(struct device *host_dev, int sw_addr) ...@@ -29,6 +29,8 @@ static char *mv88e6171_probe(struct device *host_dev, int sw_addr)
if (ret >= 0) { if (ret >= 0) {
if ((ret & 0xfff0) == 0x1710) if ((ret & 0xfff0) == 0x1710)
return "Marvell 88E6171"; return "Marvell 88E6171";
if ((ret & 0xfff0) == 0x1720)
return "Marvell 88E6172";
} }
return NULL; return NULL;
...@@ -409,3 +411,4 @@ struct dsa_switch_driver mv88e6171_switch_driver = { ...@@ -409,3 +411,4 @@ struct dsa_switch_driver mv88e6171_switch_driver = {
}; };
MODULE_ALIAS("platform:mv88e6171"); MODULE_ALIAS("platform:mv88e6171");
MODULE_ALIAS("platform:mv88e6172");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment