Skip to content

Commit

Permalink
drbd: Kconfig fix
Browse files Browse the repository at this point in the history
!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>
  • Loading branch information
Johannes Thoma authored and Philipp Reisner committed Dec 29, 2009
1 parent 0a6dbf2 commit 89f01d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/drbd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 89f01d5

Please sign in to comment.