diff options
author | Jan Engelhardt | 2007-05-16 00:51:46 +0200 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz | 2007-05-16 00:51:46 +0200 |
commit | e0ff9cd12a26259f8dd676124a188037e7e90b38 (patch) | |
tree | 25cb00f3e455b09960fe7cddb33cda2f6bfe04b3 | |
parent | sl82c105: Switch to ref counting API (diff) | |
download | kernel-qcow2-linux-e0ff9cd12a26259f8dd676124a188037e7e90b38.tar.gz kernel-qcow2-linux-e0ff9cd12a26259f8dd676124a188037e7e90b38.tar.xz kernel-qcow2-linux-e0ff9cd12a26259f8dd676124a188037e7e90b38.zip |
Use menuconfig objects: IDE
Use menuconfigs instead of menus, so the whole menu can be disabled at once
instead of going through all options.
Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | drivers/ide/Kconfig | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/drivers/ide/Kconfig b/drivers/ide/Kconfig index 9040809d2c25..b1a9b81c211f 100644 --- a/drivers/ide/Kconfig +++ b/drivers/ide/Kconfig @@ -4,13 +4,10 @@ # Andre Hedrick <andre@linux-ide.org> # -if BLOCK - -menu "ATA/ATAPI/MFM/RLL support" - depends on HAS_IOMEM - -config IDE +menuconfig IDE tristate "ATA/ATAPI/MFM/RLL support" + depends on BLOCK + depends on HAS_IOMEM ---help--- If you say Y here, your kernel will be able to manage low cost mass storage units such as ATA/(E)IDE and ATAPI units. The most common @@ -1099,8 +1096,4 @@ config BLK_DEV_HD_ONLY config BLK_DEV_HD def_bool BLK_DEV_HD_IDE || BLK_DEV_HD_ONLY -endif - -endmenu - -endif +endif # IDE |