Release 4.10 include/linux/pm-trace.h
#ifndef PM_TRACE_H
#define PM_TRACE_H
#include <linux/types.h>
#ifdef CONFIG_PM_TRACE
#include <asm/pm-trace.h>
extern int pm_trace_enabled;
extern bool pm_trace_rtc_abused;
static inline bool pm_trace_rtc_valid(void)
{
return !pm_trace_rtc_abused;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
chen yu | chen yu | 13 | 100.00% | 1 | 100.00% |
| Total | 13 | 100.00% | 1 | 100.00% |
static inline int pm_trace_is_enabled(void)
{
return pm_trace_enabled;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rafael j. wysocki | rafael j. wysocki | 12 | 100.00% | 1 | 100.00% |
| Total | 12 | 100.00% | 1 | 100.00% |
struct device;
extern void set_trace_device(struct device *);
extern void generate_pm_trace(const void *tracedata, unsigned int user);
extern int show_trace_dev_match(char *buf, size_t size);
#define TRACE_DEVICE(dev) do { \
if (pm_trace_enabled) \
set_trace_device(dev); \
} while(0)
#else
static inline bool pm_trace_rtc_valid(void) { return true; }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
chen yu | chen yu | 12 | 100.00% | 1 | 100.00% |
| Total | 12 | 100.00% | 1 | 100.00% |
static inline int pm_trace_is_enabled(void) { return 0; }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rafael j. wysocki | rafael j. wysocki | 12 | 100.00% | 1 | 100.00% |
| Total | 12 | 100.00% | 1 | 100.00% |
#define TRACE_DEVICE(dev) do { } while (0)
#define TRACE_RESUME(dev) do { } while (0)
#define TRACE_SUSPEND(dev) do { } while (0)
#endif
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 57 | 39.58% | 1 | 12.50% |
chen yu | chen yu | 32 | 22.22% | 1 | 12.50% |
rafael j. wysocki | rafael j. wysocki | 28 | 19.44% | 2 | 25.00% |
james hogan | james hogan | 12 | 8.33% | 1 | 12.50% |
fu zhonghui | fu zhonghui | 11 | 7.64% | 1 | 12.50% |
nigel cunningham | nigel cunningham | 3 | 2.08% | 1 | 12.50% |
jan beulich | jan beulich | 1 | 0.69% | 1 | 12.50% |
| Total | 144 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.