From: Kees Cook Date: Thu, 17 Jan 2013 02:53:27 +0000 (-0800) Subject: arch/tile/kvm: remove depends on CONFIG_EXPERIMENTAL X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8081c1dc05888496f588eee033325f938541101f;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git arch/tile/kvm: 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: Avi Kivity CC: Marcelo Tosatti Acked-by: Chris Metcalf Cc: Greg Kroah-Hartman Signed-off-by: Kees Cook Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/tile/kvm/Kconfig b/arch/tile/kvm/Kconfig index 669fcdba31e..2298cb1daff 100644 --- a/arch/tile/kvm/Kconfig +++ b/arch/tile/kvm/Kconfig @@ -18,7 +18,7 @@ if VIRTUALIZATION config KVM tristate "Kernel-based Virtual Machine (KVM) support" - depends on HAVE_KVM && MODULES && EXPERIMENTAL + depends on HAVE_KVM && MODULES select PREEMPT_NOTIFIERS select ANON_INODES ---help---