diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-01-06 16:42:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-07 22:37:22 -0500 |
commit | 111427f6eb5a5d9ce22f8a90780ac1c18113091a (patch) | |
tree | be21caceeb6c09b53b08dc66976301628e9705c3 /net/dsa/dsa_priv.h | |
parent | 82e4869da38069232b62013b2f77c9d73fc97147 (diff) | |
download | linux-stable-111427f6eb5a5d9ce22f8a90780ac1c18113091a.tar.gz linux-stable-111427f6eb5a5d9ce22f8a90780ac1c18113091a.tar.bz2 linux-stable-111427f6eb5a5d9ce22f8a90780ac1c18113091a.zip |
net: dsa: move HWMON support to its own file
Isolate the HWMON support in DSA in its own file. Currently only the
legacy DSA code is concerned.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa_priv.h')
-rw-r--r-- | net/dsa/dsa_priv.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/dsa/dsa_priv.h b/net/dsa/dsa_priv.h index 63ae1484abae..7e3385ec73f4 100644 --- a/net/dsa/dsa_priv.h +++ b/net/dsa/dsa_priv.h @@ -56,6 +56,15 @@ const struct dsa_device_ops *dsa_resolve_tag_protocol(int tag_protocol); int dsa_cpu_port_ethtool_setup(struct dsa_switch *ds); void dsa_cpu_port_ethtool_restore(struct dsa_switch *ds); +/* hwmon.c */ +#ifdef CONFIG_NET_DSA_HWMON +void dsa_hwmon_register(struct dsa_switch *ds); +void dsa_hwmon_unregister(struct dsa_switch *ds); +#else +static inline void dsa_hwmon_register(struct dsa_switch *ds) { } +static inline void dsa_hwmon_unregister(struct dsa_switch *ds) { } +#endif + /* slave.c */ extern const struct dsa_device_ops notag_netdev_ops; void dsa_slave_mii_bus_init(struct dsa_switch *ds); |