Blame view

kernel/trace/power-traces.c 418 Bytes
616135214   Arjan van de Ven   tracing, perf: Co...
1
2
3
4
5
6
7
8
9
10
11
  /*
   * Power trace points
   *
   * Copyright (C) 2009 Arjan van de Ven <arjan@linux.intel.com>
   */
  
  #include <linux/string.h>
  #include <linux/types.h>
  #include <linux/workqueue.h>
  #include <linux/sched.h>
  #include <linux/module.h>
616135214   Arjan van de Ven   tracing, perf: Co...
12
13
14
  
  #define CREATE_TRACE_POINTS
  #include <trace/events/power.h>
25e41933b   Thomas Renninger   perf: Clean up po...
15
  #ifdef EVENT_POWER_TRACING_DEPRECATED
61a0d49c3   Thomas Renninger   perf: Do not expo...
16
  EXPORT_TRACEPOINT_SYMBOL_GPL(power_start);
25e41933b   Thomas Renninger   perf: Clean up po...
17
18
  #endif
  EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_idle);
616135214   Arjan van de Ven   tracing, perf: Co...
19