drivers: staging: zcache: fix compile error
authorBob Liu <lliubbo@gmail.com>
Tue, 2 Apr 2013 02:47:42 +0000 (10:47 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Apr 2013 19:43:41 +0000 (12:43 -0700)
commit555ee46f58c12a0b48b1d0b6b62637f874f00f2d
tree853a72a200d6acb6df56e32b960dfeb4deb2692b
parent6d3a63790c6b280351fbb7cf31690c5d0043ea49
drivers: staging: zcache: fix compile error

Because 'ramster_debugfs_init' is not defined if !CONFIG_DEBUG_FS, there is
compile error:

$ make drivers/staging/zcache/
staging/zcache/ramster/ramster.c: In function ‘ramster_init’:
staging/zcache/ramster/ramster.c:981:2: error: implicit declaration of
function ‘ramster_debugfs_init’ [-Werror=implicit-function-declaration]

This patch fix it and reduce some #ifdef CONFIG_DEBUG_FS in .c files the same
way.

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Bob Liu <bob.liu@oracle.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/zcache/ramster/ramster.c
drivers/staging/zcache/zbud.c
drivers/staging/zcache/zcache-main.c