drm/i915: intel_lvds.c fix section mismatch
[linux-2.6/mini2440.git] / include / trace / power.h
blobef204666e9832039958235e2cc08ae3cae0f528a
1 #ifndef _TRACE_POWER_H
2 #define _TRACE_POWER_H
4 #include <linux/ktime.h>
5 #include <linux/tracepoint.h>
7 enum {
8 POWER_NONE = 0,
9 POWER_CSTATE = 1,
10 POWER_PSTATE = 2,
13 struct power_trace {
14 ktime_t stamp;
15 ktime_t end;
16 int type;
17 int state;
20 DECLARE_TRACE(power_start,
21 TP_PROTO(struct power_trace *it, unsigned int type, unsigned int state),
22 TP_ARGS(it, type, state));
24 DECLARE_TRACE(power_mark,
25 TP_PROTO(struct power_trace *it, unsigned int type, unsigned int state),
26 TP_ARGS(it, type, state));
28 DECLARE_TRACE(power_end,
29 TP_PROTO(struct power_trace *it),
30 TP_ARGS(it));
32 #endif /* _TRACE_POWER_H */