https://github.com/torvalds/linux
Raw File
Tip revision: 9c763584b7c8911106bb77af7e648bef09af9d80 authored by Linus Torvalds on 20 November 2016, 21:52:19 UTC
Linux 4.9-rc6
Tip revision: 9c76358
Kconfig
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 "Distributed Switch Architecture"
	depends on HAVE_NET_DSA && NET_SWITCHDEV
	select PHYLIB
	---help---
	  Say Y if you want to enable support for the hardware switches supported
	  by the Distributed Switch Architecture.

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

config NET_DSA_TAG_QCA
	bool

endif
back to top