diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-02-17 05:29:53 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-17 05:29:53 -0500 |
commit | c4e2b432d5b57e2faaeea048079b31c243079647 (patch) | |
tree | f4e59abeb522ecb11476fe69d827390050a0ffee /include | |
parent | a234aa9ecdf47a5461573a21dc0b154278df5ba8 (diff) | |
parent | 72b623c73685e86b70a51855e1058ebc98a9f6ed (diff) |
Merge branches 'tracing/hw-branch-tracing' and 'tracing/power-tracer' into tracing/core
Diffstat (limited to 'include')
-rw-r--r-- | include/trace/power.h | 25 |
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 | ||
6 | enum { | 7 | enum { |
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 | 22 | DECLARE_TRACE(power_start, |
22 | extern 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)); |
24 | extern void trace_power_mark(struct power_trace *it, unsigned int type, | 25 | |
25 | unsigned int state); | 26 | DECLARE_TRACE(power_mark, |
26 | extern 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)); |
28 | static inline void trace_power_start(struct power_trace *it, unsigned int type, | 29 | |
29 | unsigned int state) { } | 30 | DECLARE_TRACE(power_end, |
30 | static 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)); |
32 | static inline void trace_power_end(struct power_trace *it) { } | ||
33 | #endif | ||
34 | 33 | ||
35 | #endif /* _TRACE_POWER_H */ | 34 | #endif /* _TRACE_POWER_H */ |