power-traces.c 376 B

123456789101112131415161718
  1. /*
  2. * Power trace points
  3. *
  4. * Copyright (C) 2009 Arjan van de Ven <arjan@linux.intel.com>
  5. */
  6. #include <linux/string.h>
  7. #include <linux/types.h>
  8. #include <linux/workqueue.h>
  9. #include <linux/sched.h>
  10. #include <linux/module.h>
  11. #define CREATE_TRACE_POINTS
  12. #include <trace/events/power.h>
  13. EXPORT_TRACEPOINT_SYMBOL_GPL(suspend_resume);
  14. EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_idle);