diff options
author | Francois Romieu <romieu@fr.zoreil.com> | 2014-08-05 17:10:52 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-05 19:48:59 -0400 |
commit | 1bb5a356c3ea6e633908e0ebd6695b13debc3d86 (patch) | |
tree | b56853fafe2dc303364fb79eff326e83664226a9 /drivers/net/usb/Kconfig | |
parent | 0ca58d6242999b36c3fa53cb3dd3775fbc5a7594 (diff) |
net: reduce USB network driver config options.
USB network drivers are already handled in drivers/net/usb/Kconfig.
Let's save the maintenance burden of dependencies in drivers/net/Makefile.
The newly introduced USB_NET_DRIVERS umbrella config option defaults
to 'y' so as to minimize the changes of behavior.
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/Kconfig')
-rw-r--r-- | drivers/net/usb/Kconfig | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/net/usb/Kconfig b/drivers/net/usb/Kconfig index 7e7269fd3707..9f194a0bef7c 100644 --- a/drivers/net/usb/Kconfig +++ b/drivers/net/usb/Kconfig | |||
@@ -1,12 +1,16 @@ | |||
1 | # | 1 | # |
2 | # USB Network devices configuration | 2 | # USB Network devices configuration |
3 | # | 3 | # |
4 | comment "Networking support is needed for USB Network Adapter support" | 4 | comment "Host-side USB support is needed for USB Network Adapter support" |
5 | depends on USB && !NET | 5 | depends on !USB && NET |
6 | 6 | ||
7 | menu "USB Network Adapters" | 7 | menuconfig USB_NET_DRIVERS |
8 | bool "USB Network Adapters" | ||
9 | default y | ||
8 | depends on USB && NET | 10 | depends on USB && NET |
9 | 11 | ||
12 | if USB_NET_DRIVERS | ||
13 | |||
10 | config USB_CATC | 14 | config USB_CATC |
11 | tristate "USB CATC NetMate-based Ethernet device support" | 15 | tristate "USB CATC NetMate-based Ethernet device support" |
12 | select CRC32 | 16 | select CRC32 |
@@ -568,5 +572,4 @@ config USB_VL600 | |||
568 | 572 | ||
569 | http://ubuntuforums.org/showpost.php?p=10589647&postcount=17 | 573 | http://ubuntuforums.org/showpost.php?p=10589647&postcount=17 |
570 | 574 | ||
571 | 575 | endif # USB_NET_DRIVERS | |
572 | endmenu | ||