aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block
diff options
context:
space:
mode:
authorJohannes Thoma <johannes.thoma@linbit.com>2009-12-29 16:38:04 +0100
committerPhilipp Reisner <philipp.reisner@linbit.com>2009-12-29 17:38:28 +0100
commit89f01d5cd3c7ef01239bf15283181a0091c78657 (patch)
tree41fda78ec95e25fe88e2ddb2844a65d28fb48737 /drivers/block
parentdrbd: Fix for a race between IO and a detach operation [Bugz 262] (diff)
downloadlinux-dev-89f01d5cd3c7ef01239bf15283181a0091c78657.tar.xz
linux-dev-89f01d5cd3c7ef01239bf15283181a0091c78657.zip
drbd: Kconfig fix
!CONFIG_OPT evalues to FALSE if CONFIG_OPT='m'. Do not display the "DRBD disabled..." message if the dependencies are compiled as module. Signed-off-by: Johannes Thoma <johannes.thoma@linbit.com> Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/drbd/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/drbd/Kconfig b/drivers/block/drbd/Kconfig
index f4acd04ebeef..df0983787390 100644
--- a/drivers/block/drbd/Kconfig
+++ b/drivers/block/drbd/Kconfig
@@ -3,7 +3,7 @@
#
comment "DRBD disabled because PROC_FS, INET or CONNECTOR not selected"
- depends on !PROC_FS || !INET || !CONNECTOR
+ depends on PROC_FS='n' || INET='n' || CONNECTOR='n'
config BLK_DEV_DRBD
tristate "DRBD Distributed Replicated Block Device support"