mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
51579c3f1a
Some switches provide chip temperature data. Add support for reporting it through the hwmon subsystem. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: David S. Miller <davem@davemloft.net>
38 lines
760 B
Text
38 lines
760 B
Text
config HAVE_NET_DSA
|
|
def_bool y
|
|
depends on NETDEVICES && !S390
|
|
|
|
# Drivers must select NET_DSA and the appropriate tagging format
|
|
|
|
config NET_DSA
|
|
tristate
|
|
depends on HAVE_NET_DSA
|
|
select PHYLIB
|
|
|
|
if NET_DSA
|
|
|
|
config NET_DSA_HWMON
|
|
bool "Distributed Switch Architecture HWMON support"
|
|
default y
|
|
depends on HWMON && !(NET_DSA=y && HWMON=m)
|
|
---help---
|
|
Say Y if you want to expose thermal sensor data on switches supported
|
|
by the Distributed Switch Architecture.
|
|
|
|
Some of those switches contain thermal sensors. This data is available
|
|
via the hwmon sysfs interface and exposes the onboard sensors.
|
|
|
|
# tagging formats
|
|
config NET_DSA_TAG_BRCM
|
|
bool
|
|
|
|
config NET_DSA_TAG_DSA
|
|
bool
|
|
|
|
config NET_DSA_TAG_EDSA
|
|
bool
|
|
|
|
config NET_DSA_TAG_TRAILER
|
|
bool
|
|
|
|
endif
|