diff options
author | Kees Cook <keescook@chromium.org> | 2012-10-02 11:19:30 -0700 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2013-01-11 11:39:33 -0800 |
commit | 750358ee4f6ebafccf71b36fdc96d738706b4e37 (patch) | |
tree | e1edc3d3c44043a67ba7d8b8e1bdbd3acd3dd501 /kernel/gcov/Kconfig | |
parent | 19c92399817995382522c09ca21e8784a028c023 (diff) | |
download | talos-op-linux-750358ee4f6ebafccf71b36fdc96d738706b4e37.tar.gz talos-op-linux-750358ee4f6ebafccf71b36fdc96d738706b4e37.zip |
kernel/gcov: 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: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
Diffstat (limited to 'kernel/gcov/Kconfig')
-rw-r--r-- | kernel/gcov/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/gcov/Kconfig b/kernel/gcov/Kconfig index a92028196cc1..d4da55d1fb65 100644 --- a/kernel/gcov/Kconfig +++ b/kernel/gcov/Kconfig @@ -35,7 +35,7 @@ config GCOV_KERNEL config GCOV_PROFILE_ALL bool "Profile entire Kernel" depends on GCOV_KERNEL - depends on SUPERH || S390 || X86 || (PPC && EXPERIMENTAL) || MICROBLAZE + depends on SUPERH || S390 || X86 || PPC || MICROBLAZE default n ---help--- This options activates profiling for the entire kernel. |