aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-02-17 05:29:53 -0500
committerIngo Molnar <mingo@elte.hu>2009-02-17 05:29:53 -0500
commitc4e2b432d5b57e2faaeea048079b31c243079647 (patch)
treef4e59abeb522ecb11476fe69d827390050a0ffee /include
parenta234aa9ecdf47a5461573a21dc0b154278df5ba8 (diff)
parent72b623c73685e86b70a51855e1058ebc98a9f6ed (diff)
Merge branches 'tracing/hw-branch-tracing' and 'tracing/power-tracer' into tracing/core
Diffstat (limited to 'include')
-rw-r--r--include/trace/power.h25
1 files changed, 12 insertions, 13 deletions
diff --git a/include/trace/power.h b/include/trace/power.h
index c7cefbcdaea4..2c733e58e89c 100644
--- a/include/trace/power.h
+++ b/include/trace/power.h
@@ -2,6 +2,7 @@
2#define _TRACE_POWER_H 2#define _TRACE_POWER_H
3 3
4#include <linux/ktime.h> 4#include <linux/ktime.h>
5#include <linux/tracepoint.h>
5 6
6enum { 7enum {
7 POWER_NONE = 0, 8 POWER_NONE = 0,
@@ -18,18 +19,16 @@ struct power_trace {
18#endif 19#endif
19}; 20};
20 21
21#ifdef CONFIG_POWER_TRACER 22DECLARE_TRACE(power_start,
22extern void trace_power_start(struct power_trace *it, unsigned int type, 23 TPPROTO(struct power_trace *it, unsigned int type, unsigned int state),
23 unsigned int state); 24 TPARGS(it, type, state));
24extern void trace_power_mark(struct power_trace *it, unsigned int type, 25
25 unsigned int state); 26DECLARE_TRACE(power_mark,
26extern void trace_power_end(struct power_trace *it); 27 TPPROTO(struct power_trace *it, unsigned int type, unsigned int state),
27#else 28 TPARGS(it, type, state));
28static inline void trace_power_start(struct power_trace *it, unsigned int type, 29
29 unsigned int state) { } 30DECLARE_TRACE(power_end,
30static inline void trace_power_mark(struct power_trace *it, unsigned int type, 31 TPPROTO(struct power_trace *it),
31 unsigned int state) { } 32 TPARGS(it));
32static inline void trace_power_end(struct power_trace *it) { }
33#endif
34 33
35#endif /* _TRACE_POWER_H */ 34#endif /* _TRACE_POWER_H */