Loading...
1config NET_DSA
2 tristate "Distributed Switch Architecture support"
3 default n
4 depends on EXPERIMENTAL && NETDEVICES && !S390
5 select PHYLIB
6 ---help---
7 This allows you to use hardware switch chips that use
8 the Distributed Switch Architecture.
9
10
11if NET_DSA
12
13# tagging formats
14config NET_DSA_TAG_DSA
15 bool
16 default n
17
18config NET_DSA_TAG_EDSA
19 bool
20 default n
21
22config NET_DSA_TAG_TRAILER
23 bool
24 default n
25
26endif
1config HAVE_NET_DSA
2 def_bool y
3 depends on NETDEVICES && !S390
4
5# Drivers must select NET_DSA and the appropriate tagging format
6
7config NET_DSA
8 tristate
9 depends on HAVE_NET_DSA
10 select PHYLIB
11
12if NET_DSA
13
14# tagging formats
15config NET_DSA_TAG_DSA
16 bool
17
18config NET_DSA_TAG_EDSA
19 bool
20
21config NET_DSA_TAG_TRAILER
22 bool
23
24endif