From: Seth Jennings Date: Mon, 5 Mar 2012 16:46:38 +0000 (-0600) Subject: staging: zcache: make zcache builtin only X-Git-Tag: upstream/snapshot3+hdmi~7963^2~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bec25dfd850cf92cba894c94d6660fc18d3a7447;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Acked-by: Dan Magenheimer Signed-off-by: Greg Kroah-Hartman --- 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