diff options
author | Jan Engelhardt <jengelh@linux01.gwdg.de> | 2007-07-17 07:04:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:05 -0400 |
commit | f28df7e4aef3a14bf87a561dbd43935ba6ae59b2 (patch) | |
tree | a4cf0870962c8ef56b584bab185e475fe83d157c | |
parent | df19434cc268e207d1beb4dc7be3420888faef09 (diff) |
Use menuconfig objects: ISDN: CONFIG_CAPI_AVM
Transform Kconfig objects from "menu, config" into "menuconfig" so
that the user can disable the whole feature without having to enter
the menu first.
Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/isdn/hardware/avm/Kconfig | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/drivers/isdn/hardware/avm/Kconfig b/drivers/isdn/hardware/avm/Kconfig index fe6c67ced33f..5dbcbe3a54a6 100644 --- a/drivers/isdn/hardware/avm/Kconfig +++ b/drivers/isdn/hardware/avm/Kconfig | |||
@@ -2,22 +2,22 @@ | |||
2 | # ISDN AVM drivers | 2 | # ISDN AVM drivers |
3 | # | 3 | # |
4 | 4 | ||
5 | menu "Active AVM cards" | 5 | menuconfig CAPI_AVM |
6 | 6 | bool "Active AVM cards" | |
7 | config CAPI_AVM | ||
8 | bool "Support AVM cards" | ||
9 | help | 7 | help |
10 | Enable support for AVM active ISDN cards. | 8 | Enable support for AVM active ISDN cards. |
11 | 9 | ||
10 | if CAPI_AVM | ||
11 | |||
12 | config ISDN_DRV_AVMB1_B1ISA | 12 | config ISDN_DRV_AVMB1_B1ISA |
13 | tristate "AVM B1 ISA support" | 13 | tristate "AVM B1 ISA support" |
14 | depends on CAPI_AVM && ISA | 14 | depends on ISA |
15 | help | 15 | help |
16 | Enable support for the ISA version of the AVM B1 card. | 16 | Enable support for the ISA version of the AVM B1 card. |
17 | 17 | ||
18 | config ISDN_DRV_AVMB1_B1PCI | 18 | config ISDN_DRV_AVMB1_B1PCI |
19 | tristate "AVM B1 PCI support" | 19 | tristate "AVM B1 PCI support" |
20 | depends on CAPI_AVM && PCI | 20 | depends on PCI |
21 | help | 21 | help |
22 | Enable support for the PCI version of the AVM B1 card. | 22 | Enable support for the PCI version of the AVM B1 card. |
23 | 23 | ||
@@ -29,14 +29,13 @@ config ISDN_DRV_AVMB1_B1PCIV4 | |||
29 | 29 | ||
30 | config ISDN_DRV_AVMB1_T1ISA | 30 | config ISDN_DRV_AVMB1_T1ISA |
31 | tristate "AVM T1/T1-B ISA support" | 31 | tristate "AVM T1/T1-B ISA support" |
32 | depends on CAPI_AVM && ISA | 32 | depends on ISA |
33 | help | 33 | help |
34 | Enable support for the AVM T1 T1B card. | 34 | Enable support for the AVM T1 T1B card. |
35 | Note: This is a PRI card and handle 30 B-channels. | 35 | Note: This is a PRI card and handle 30 B-channels. |
36 | 36 | ||
37 | config ISDN_DRV_AVMB1_B1PCMCIA | 37 | config ISDN_DRV_AVMB1_B1PCMCIA |
38 | tristate "AVM B1/M1/M2 PCMCIA support" | 38 | tristate "AVM B1/M1/M2 PCMCIA support" |
39 | depends on CAPI_AVM | ||
40 | help | 39 | help |
41 | Enable support for the PCMCIA version of the AVM B1 card. | 40 | Enable support for the PCMCIA version of the AVM B1 card. |
42 | 41 | ||
@@ -49,17 +48,16 @@ config ISDN_DRV_AVMB1_AVM_CS | |||
49 | 48 | ||
50 | config ISDN_DRV_AVMB1_T1PCI | 49 | config ISDN_DRV_AVMB1_T1PCI |
51 | tristate "AVM T1/T1-B PCI support" | 50 | tristate "AVM T1/T1-B PCI support" |
52 | depends on CAPI_AVM && PCI | 51 | depends on PCI |
53 | help | 52 | help |
54 | Enable support for the AVM T1 T1B card. | 53 | Enable support for the AVM T1 T1B card. |
55 | Note: This is a PRI card and handle 30 B-channels. | 54 | Note: This is a PRI card and handle 30 B-channels. |
56 | 55 | ||
57 | config ISDN_DRV_AVMB1_C4 | 56 | config ISDN_DRV_AVMB1_C4 |
58 | tristate "AVM C4/C2 support" | 57 | tristate "AVM C4/C2 support" |
59 | depends on CAPI_AVM && PCI | 58 | depends on PCI |
60 | help | 59 | help |
61 | Enable support for the AVM C4/C2 PCI cards. | 60 | Enable support for the AVM C4/C2 PCI cards. |
62 | These cards handle 4/2 BRI ISDN lines (8/4 channels). | 61 | These cards handle 4/2 BRI ISDN lines (8/4 channels). |
63 | 62 | ||
64 | endmenu | 63 | endif # CAPI_AVM |
65 | |||