| #define TRACE_SYSTEM power |
| #if !defined(_TRACE_POWER_H) || defined(TRACE_HEADER_MULTI_READ) |
| #include <linux/tracepoint.h> |
| #ifndef _TRACE_POWER_ENUM_ |
| #define _TRACE_POWER_ENUM_ |
| DECLARE_EVENT_CLASS(power, |
| TP_PROTO(unsigned int type, unsigned int state), |
| TP_printk("type=%lu state=%lu", (unsigned long)__entry->type, (unsigned long)__entry->state) |
| DEFINE_EVENT(power, power_start, |
| TP_PROTO(unsigned int type, unsigned int state), |
| DEFINE_EVENT(power, power_frequency, |
| TP_PROTO(unsigned int type, unsigned int state), |
| TP_printk("dummy=%lu", (unsigned long)__entry->dummy) |
| #endif /* _TRACE_POWER_H */ |
| /* This part must be outside protection */ |
| #include <trace/define_trace.h> |