diff options
author | Kees Cook <keescook@chromium.org> | 2012-10-02 11:17:25 -0700 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2013-01-11 11:38:05 -0800 |
commit | 3594ec0a7092c840a7abb698546ba2c43b0ae63f (patch) | |
tree | cfee18c5fabba2cc4c03151341998b8696fe188c | |
parent | 762150eb5dcd3fd6f1e09516add2e927df243b87 (diff) | |
download | talos-op-linux-3594ec0a7092c840a7abb698546ba2c43b0ae63f.tar.gz talos-op-linux-3594ec0a7092c840a7abb698546ba2c43b0ae63f.zip |
drivers/lguest: 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: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
-rw-r--r-- | drivers/lguest/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/Kconfig b/drivers/lguest/Kconfig index 34ae49dc557c..6cdcdb0d3d58 100644 --- a/drivers/lguest/Kconfig +++ b/drivers/lguest/Kconfig @@ -1,6 +1,6 @@ config LGUEST tristate "Linux hypervisor example code" - depends on X86_32 && EXPERIMENTAL && EVENTFD + depends on X86_32 && EVENTFD select HVC_DRIVER ---help--- This is a very simple module which allows you to run |