brintos

brintos / linux-shallow public Read only

0
0
Text · 547 B · 64b6612 Raw
32 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#undef TRACE_SYSTEM3#define TRACE_SYSTEM intel_ish4 5#if !defined(_TRACE_INTEL_ISH_H) || defined(TRACE_HEADER_MULTI_READ)6#define _TRACE_INTEL_ISH_H7 8#include <linux/tracepoint.h>9 10TRACE_EVENT(ishtp_dump,11 12	TP_PROTO(const char *message),13 14	TP_ARGS(message),15 16	TP_STRUCT__entry(17		__string(message, message)18	),19 20	TP_fast_assign(21		__assign_str(message);22	),23 24	TP_printk("%s", __get_str(message))25);26 27 28#endif /* _TRACE_INTEL_ISH_H */29 30/* This part must be outside protection */31#include <trace/define_trace.h>32