summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk+lkml@arm.linux.org.uk>2004-03-18 20:52:30 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-03-18 20:52:30 -0800
commit4112c3d34b586f18b5764dfa8da697c76158c17c (patch)
treeb4547686c26abadf759782b053007835db6167c0
parent27cd7e0feb7d4e8ddc87296bf30ad0de3b19f4c0 (diff)
[PATCH] fix "optimize && ?"
This prevents the "optimize && ?" message appearing when the kernel configuration tool is run. The message could be eliminated from the tool, but I'd rather fix the needlessly over-complicated expression:
-rw-r--r--drivers/block/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig
index ecc967068f70..bc774118fb96 100644
--- a/drivers/block/Kconfig
+++ b/drivers/block/Kconfig
@@ -330,7 +330,7 @@ config BLK_DEV_RAM_SIZE
config BLK_DEV_INITRD
bool "Initial RAM disk (initrd) support"
- depends on BLK_DEV_RAM && BLK_DEV_RAM!=m
+ depends on BLK_DEV_RAM=y
help
The initial RAM disk is a RAM disk that is loaded by the boot loader
(loadlin or lilo) and that is mounted as root before the normal boot