
Fix the following build warning:
include/trace/hooks/psi.h:17:18: warning: declaration of
'struct psi_trigger' will not be visible outside of
this function [-Wvisibility]
Bug: 178721511
Fixes: commit b79d1815c4
("ANDROID: psi: Add vendor hooks for PSI tracing")
Change-Id: I4c8c9730f5a0c94fa8d93c6995ce25f385b52043
Signed-off-by: Georgi Djakov <quic_c_gdjako@quicinc.com>
34 lines
780 B
C
34 lines
780 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM psi
|
|
|
|
#define TRACE_INCLUDE_PATH trace/hooks
|
|
|
|
#if !defined(_TRACE_HOOK_PSI_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_HOOK_PSI_H
|
|
|
|
#include <linux/tracepoint.h>
|
|
#include <trace/hooks/vendor_hooks.h>
|
|
|
|
#if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_ANDROID_VENDOR_HOOKS)
|
|
|
|
struct psi_trigger;
|
|
struct psi_group;
|
|
DECLARE_HOOK(android_vh_psi_event,
|
|
TP_PROTO(struct psi_trigger *t),
|
|
TP_ARGS(t));
|
|
|
|
DECLARE_HOOK(android_vh_psi_group,
|
|
TP_PROTO(struct psi_group *group),
|
|
TP_ARGS(group));
|
|
|
|
#else
|
|
#define trace_android_vh_psi_event(t)
|
|
#define trace_android_vh_psi_group(group)
|
|
#endif
|
|
|
|
#endif /* _TRACE_HOOK_PSI_H */
|
|
|
|
/* This part must be outside protection */
|
|
#include <trace/define_trace.h>
|