[PATCH] tracing/osnoise: Make osnoise_options static

Daniel Bristot de Oliveira posted 1 patch 1 year, 4 months ago
kernel/trace/trace_osnoise.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] tracing/osnoise: Make osnoise_options static
Posted by Daniel Bristot de Oliveira 1 year, 4 months ago
Make osnoise_options static, as reported by the kernel test robot.

Reported-by: kernel test robot <lkp@intel.com>
Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Daniel Bristot de Oliveira <bristot@kernel.org>
---
 kernel/trace/trace_osnoise.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/trace_osnoise.c b/kernel/trace/trace_osnoise.c
index 0ec8bb54180f..f190bd43e79c 100644
--- a/kernel/trace/trace_osnoise.c
+++ b/kernel/trace/trace_osnoise.c
@@ -67,8 +67,8 @@ static const char * const osnoise_options_str[OSN_MAX] = {
 							"OSNOISE_PREEMPT_DISABLE",
 							"OSNOISE_IRQ_DISABLE" };
 
-#define OSN_DEFAULT_OPTIONS	0x2
-unsigned long osnoise_options	= OSN_DEFAULT_OPTIONS;
+#define OSN_DEFAULT_OPTIONS		0x2
+static unsigned long osnoise_options	= OSN_DEFAULT_OPTIONS;
 
 /*
  * trace_array of the enabled osnoise/timerlat instances.
-- 
2.32.0