aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/zcache/Kconfig
diff options
context:
space:
mode:
authorSeth Jennings <sjenning@linux.vnet.ibm.com>2012-03-05 10:46:38 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-03-07 13:30:17 -0800
commitbec25dfd850cf92cba894c94d6660fc18d3a7447 (patch)
tree5917977e681ec791d10a1a9968fc5e5ef08e1279 /drivers/staging/zcache/Kconfig
parent4fee7e168ba08ed067ee9aafe4a0a19387117be4 (diff)
downloadkernel_goldelico_gta04-bec25dfd850cf92cba894c94d6660fc18d3a7447.zip
kernel_goldelico_gta04-bec25dfd850cf92cba894c94d6660fc18d3a7447.tar.gz
kernel_goldelico_gta04-bec25dfd850cf92cba894c94d6660fc18d3a7447.tar.bz2
staging: zcache: make zcache builtin only
zcache cannot currently be loaded as a module. However the Kconfig allows it to be built as a module; something that the user probably does not intend since the module is not loadable. This patch switches zcache from a tristate to a bool in the Kconfig Signed-off-by: Seth Jennings <sjenning@linux.vnet.ibm.com> Acked-by: Dan Magenheimer <dan.magenheimer@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/zcache/Kconfig')
-rw-r--r--drivers/staging/zcache/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/zcache/Kconfig b/drivers/staging/zcache/Kconfig
index 5a36fcf..3ed2c8f 100644
--- a/drivers/staging/zcache/Kconfig
+++ b/drivers/staging/zcache/Kconfig
@@ -1,5 +1,5 @@
config ZCACHE
- tristate "Dynamic compression of swap pages and clean pagecache pages"
+ bool "Dynamic compression of swap pages and clean pagecache pages"
# X86 dependency is because zsmalloc uses non-portable pte/tlb
# functions
depends on (CLEANCACHE || FRONTSWAP) && CRYPTO && X86