diff options
Diffstat (limited to 'tools/perf/util/intel-pt-decoder/intel-pt-log.h')
| -rw-r--r-- | tools/perf/util/intel-pt-decoder/intel-pt-log.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tools/perf/util/intel-pt-decoder/intel-pt-log.h b/tools/perf/util/intel-pt-decoder/intel-pt-log.h index debe751dc3d6..45b64f93f358 100644 --- a/tools/perf/util/intel-pt-decoder/intel-pt-log.h +++ b/tools/perf/util/intel-pt-decoder/intel-pt-log.h @@ -16,6 +16,7 @@  #ifndef INCLUDE__INTEL_PT_LOG_H__  #define INCLUDE__INTEL_PT_LOG_H__ +#include <linux/compiler.h>  #include <stdint.h>  #include <inttypes.h> @@ -34,8 +35,7 @@ void __intel_pt_log_insn(struct intel_pt_insn *intel_pt_insn, uint64_t ip);  void __intel_pt_log_insn_no_data(struct intel_pt_insn *intel_pt_insn,  				 uint64_t ip); -__attribute__((format(printf, 1, 2))) -void __intel_pt_log(const char *fmt, ...); +void __intel_pt_log(const char *fmt, ...) __printf(1, 2);  #define intel_pt_log(fmt, ...) \  	do { \ |