]> www.infradead.org Git - users/jedix/linux-maple.git/commit
tracing: Drop unused helper function to fix the build
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 9 Sep 2024 10:53:14 +0000 (13:53 +0300)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Mon, 9 Sep 2024 20:04:25 +0000 (16:04 -0400)
commit4e378158e5c15bd237a6ff44b7abb9184d61208c
treedf5ceb07f87799bdd23945d8f0bc9001a1fc1f7d
parentaf178143343028fdec9d5960a22d17f5587fd3f5
tracing: Drop unused helper function to fix the build

A helper function defined but not used. This, in particular,
prevents kernel builds with clang, `make W=1` and CONFIG_WERROR=y:

kernel/trace/trace.c:2229:19: error: unused function 'run_tracer_selftest' [-Werror,-Wunused-function]
 2229 | static inline int run_tracer_selftest(struct tracer *type)
      |                   ^~~~~~~~~~~~~~~~~~~

Fix this by dropping unused functions.

See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
inline functions for W=1 build").

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Bill Wendling <morbo@google.com>
Cc: Justin Stitt <justinstitt@google.com>
Link: https://lore.kernel.org/20240909105314.928302-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace.c