Release 4.7 include/linux/pm-trace.h
#ifndef PM_TRACE_H
#define PM_TRACE_H
#ifdef CONFIG_PM_TRACE
#include <asm/pm-trace.h>
#include <linux/types.h>
extern int pm_trace_enabled;
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 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 | 49.57% | 1 | 14.29% |
rafael j. wysocki | rafael j. wysocki | 28 | 24.35% | 2 | 28.57% |
james hogan | james hogan | 15 | 13.04% | 1 | 14.29% |
fu zhonghui | fu zhonghui | 11 | 9.57% | 1 | 14.29% |
nigel cunningham | nigel cunningham | 3 | 2.61% | 1 | 14.29% |
jan beulich | jan beulich | 1 | 0.87% | 1 | 14.29% |
| Total | 115 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.