diff options
author | Mathieu Olivari <mathieu@codeaurora.org> | 2015-03-20 21:31:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-20 21:37:58 -0400 |
commit | c6f15070e70c2bdd769317a0615f5c5e8869bfaa (patch) | |
tree | 18a7a1fa04d3643c9ad8f26497592a445b75654e | |
parent | 13bb8e2eb37eb3badf5bf4b6bb90e485fbb6b1cd (diff) |
net: dsa: make NET_DSA manually selectable from the config
Change bd76a116707bd2381da36cf7c3183df11293f1d6 made all DSA drivers
depend on NET_DSA rather than selecting them. However, as the only way
to select this option was to actually select a driver, it made DSA
impossible to enable at all.
This patch adds an explicit entry which the user will have to enable
prior selecting a driver.
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/dsa/Kconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig index 9379a9cf7f5d..ff7736f7ff42 100644 --- a/net/dsa/Kconfig +++ b/net/dsa/Kconfig | |||
@@ -5,9 +5,12 @@ config HAVE_NET_DSA | |||
5 | # Drivers must select NET_DSA and the appropriate tagging format | 5 | # Drivers must select NET_DSA and the appropriate tagging format |
6 | 6 | ||
7 | config NET_DSA | 7 | config NET_DSA |
8 | tristate | 8 | tristate "Distributed Switch Architecture" |
9 | depends on HAVE_NET_DSA && NET_SWITCHDEV | 9 | depends on HAVE_NET_DSA && NET_SWITCHDEV |
10 | select PHYLIB | 10 | select PHYLIB |
11 | ---help--- | ||
12 | Say Y if you want to enable support for the hardware switches supported | ||
13 | by the Distributed Switch Architecture. | ||
11 | 14 | ||
12 | if NET_DSA | 15 | if NET_DSA |
13 | 16 | ||