diff options
author | Kees Cook <keescook@chromium.org> | 2013-01-17 03:54:13 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-21 23:39:05 +0100 |
commit | 03edef0fea40ae003dd0d4cb337070913265e387 (patch) | |
tree | 1a6822db18005749da7bb0ea9e479f567aa09cf7 /fs/logfs/Kconfig | |
parent | fs/jffs2: remove depends on CONFIG_EXPERIMENTAL (diff) | |
download | linux-03edef0fea40ae003dd0d4cb337070913265e387.tar.xz linux-03edef0fea40ae003dd0d4cb337070913265e387.zip |
fs/logfs: remove depends on CONFIG_EXPERIMENTAL
The CONFIG_EXPERIMENTAL config item has not carried much meaning for a
while now and is almost always enabled by default. As agreed during the
Linux kernel summit, remove it from any "depends on" lines in Kconfigs.
CC: Joern Engel <joern@logfs.org>
CC: Prasad Joshi <prasadjoshi.linux@gmail.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r-- | fs/logfs/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/logfs/Kconfig b/fs/logfs/Kconfig index daf9a9b32dd3..09ed066c0221 100644 --- a/fs/logfs/Kconfig +++ b/fs/logfs/Kconfig @@ -1,6 +1,6 @@ config LOGFS - tristate "LogFS file system (EXPERIMENTAL)" - depends on (MTD || BLOCK) && EXPERIMENTAL + tristate "LogFS file system" + depends on (MTD || BLOCK) select ZLIB_INFLATE select ZLIB_DEFLATE select CRC32 |