diff options
author | Andrew Lunn <andrew@lunn.ch> | 2017-01-20 03:37:50 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-20 22:42:51 +0300 |
commit | cf1a56a4cf196a2922e66e9a8e0bf80d324c5548 (patch) | |
tree | 967b905290303ecf4280089f82fe018ce8b081fe /net/dsa/dsa.c | |
parent | 0b04680fdae464ee51409b8cb36005f6ef8bd689 (diff) | |
download | linux-cf1a56a4cf196a2922e66e9a8e0bf80d324c5548.tar.xz |
net: dsa: Remove hwmon support
Only the Marvell mv88e6xxx DSA driver made use of the HWMON support in
DSA. The temperature sensor registers are actually in the embedded
PHYs, and the PHY driver now supports it. So remove all HWMON support
from DSA and drivers.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa.c')
-rw-r--r-- | net/dsa/dsa.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index 91f96e1bd2ec..77cb78767f1d 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -316,8 +316,6 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent) if (ret) return ret; - dsa_hwmon_register(ds); - return 0; } @@ -376,8 +374,6 @@ static void dsa_switch_destroy(struct dsa_switch *ds) { int port; - dsa_hwmon_unregister(ds); - /* Destroy network devices for physical switch ports. */ for (port = 0; port < DSA_MAX_PORTS; port++) { if (!(ds->enabled_port_mask & (1 << port))) |