diff options
author | Jan Engelhardt <jengelh@linux01.gwdg.de> | 2007-07-16 02:39:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:40 -0400 |
commit | f5920969fb9e29c9d60568864d0a56fe85e8f4b6 (patch) | |
tree | e7ad663a7f53f087528f8515c44f3828a3f2dfca /drivers/auxdisplay | |
parent | 6175ecfed3c81d388735c75f7a0ad08dc4de02d3 (diff) |
Use menuconfig objects II - auxdisplay
Make a "menuconfig" out of the Kconfig objects "menu, ..., endmenu",
so that the user can disable all the options in that menu at once
instead of having to disable each option separately.
Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Acked-by: Miguel Ojeda Sandonis <maxextreme@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/auxdisplay')
-rw-r--r-- | drivers/auxdisplay/Kconfig | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/auxdisplay/Kconfig b/drivers/auxdisplay/Kconfig index ea4fe3e48f33..de2fcce10ba5 100644 --- a/drivers/auxdisplay/Kconfig +++ b/drivers/auxdisplay/Kconfig | |||
@@ -5,8 +5,11 @@ | |||
5 | # Auxiliary display drivers configuration. | 5 | # Auxiliary display drivers configuration. |
6 | # | 6 | # |
7 | 7 | ||
8 | menu "Auxiliary Display support" | 8 | menuconfig AUXDISPLAY |
9 | depends on PARPORT | 9 | depends on PARPORT |
10 | bool "Auxiliary Display support" | ||
11 | |||
12 | if AUXDISPLAY && PARPORT | ||
10 | 13 | ||
11 | config KS0108 | 14 | config KS0108 |
12 | tristate "KS0108 LCD Controller" | 15 | tristate "KS0108 LCD Controller" |
@@ -111,4 +114,5 @@ config CFAG12864B_RATE | |||
111 | 114 | ||
112 | If you compile this as a module, you can still override this | 115 | If you compile this as a module, you can still override this |
113 | value using the module parameters. | 116 | value using the module parameters. |
114 | endmenu | 117 | |
118 | endif # AUXDISPLAY | ||