1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Support for libpfm4 event encoding.
5 * Copyright 2020 Google LLC.
10 #include <subcmd/parse-options.h>
13 int parse_libpfm_events_option(const struct option
*opt
, const char *str
,
16 void print_libpfm_events(bool name_only
, bool long_desc
);
19 #include <linux/compiler.h>
21 static inline int parse_libpfm_events_option(
22 const struct option
*opt __maybe_unused
,
23 const char *str __maybe_unused
,
24 int unset __maybe_unused
)
29 static inline void print_libpfm_events(bool name_only __maybe_unused
,
30 bool long_desc __maybe_unused
)
37 #endif /* __PERF_PFM_H */