diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2016-02-19 14:47:00 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2016-04-19 12:15:54 -0400 |
commit | 8d44f2f34fb50f40185ef6404b0047223a27ba82 (patch) | |
tree | 7f9bfe7bc65ffeb69ad2a7e4facfe02212884164 /kernel/trace/Kconfig | |
parent | 08d43a5fa063e03c860f2f391a30c388bcbc948e (diff) | |
download | lwn-8d44f2f34fb50f40185ef6404b0047223a27ba82.tar.gz lwn-8d44f2f34fb50f40185ef6404b0047223a27ba82.zip |
tracing: Fix TRACING_MAP Kconfig
The config option for TRACING_MAP has "default n", which is not needed
because the default of configs is 'n'.
Also, since the TRACING_MAP has no config prompt, there's no reason to
include "If in doubt, say N" in the help text.
Fixed a typo in the comments of tracing_map.h.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/Kconfig')
-rw-r--r-- | kernel/trace/Kconfig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/trace/Kconfig b/kernel/trace/Kconfig index 48b732943e0e..d39556fd863a 100644 --- a/kernel/trace/Kconfig +++ b/kernel/trace/Kconfig @@ -531,7 +531,6 @@ config MMIOTRACE config TRACING_MAP bool depends on ARCH_HAVE_NMI_SAFE_CMPXCHG - default n help tracing_map is a special-purpose lock-free map for tracing, separated out as a stand-alone facility in order to allow it @@ -539,8 +538,6 @@ config TRACING_MAP generally used outside of that context, and is normally selected by tracers that use it. - If in doubt, say N. - config MMIOTRACE_TEST tristate "Test module for mmiotrace" depends on MMIOTRACE && m |