-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tracing/power: move the power trace headers to a dedicated file
Impact: cleanup Move the power tracer headers to trace/power.h to keep ftrace.h and power bits more easy to maintain as separated topics. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Arjan van de Ven <arjan@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
- Loading branch information
Frederic Weisbecker
authored and
Ingo Molnar
committed
Feb 9, 2009
1 parent
7447dce
commit 1292211
Showing
6 changed files
with
39 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#ifndef _TRACE_POWER_H | ||
#define _TRACE_POWER_H | ||
|
||
#include <linux/ktime.h> | ||
|
||
enum { | ||
POWER_NONE = 0, | ||
POWER_CSTATE = 1, | ||
POWER_PSTATE = 2, | ||
}; | ||
|
||
struct power_trace { | ||
#ifdef CONFIG_POWER_TRACER | ||
ktime_t stamp; | ||
ktime_t end; | ||
int type; | ||
int state; | ||
#endif | ||
}; | ||
|
||
#ifdef CONFIG_POWER_TRACER | ||
extern void trace_power_start(struct power_trace *it, unsigned int type, | ||
unsigned int state); | ||
extern void trace_power_mark(struct power_trace *it, unsigned int type, | ||
unsigned int state); | ||
extern void trace_power_end(struct power_trace *it); | ||
#else | ||
static inline void trace_power_start(struct power_trace *it, unsigned int type, | ||
unsigned int state) { } | ||
static inline void trace_power_mark(struct power_trace *it, unsigned int type, | ||
unsigned int state) { } | ||
static inline void trace_power_end(struct power_trace *it) { } | ||
#endif | ||
|
||
#endif /* _TRACE_POWER_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters