2009-09-17 16:11:28 +02:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#define CREATE_TRACE_POINTS
|
|
|
|
#include <trace/events/power.h>
|
|
|
|
|
2014-12-13 05:06:46 +01:00
|
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(suspend_resume);
|
2011-01-03 17:50:44 +01:00
|
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_idle);
|
2016-04-02 01:09:12 +02:00
|
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_frequency);
|
2016-02-02 20:41:40 +01:00
|
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(powernv_throttle);
|
2009-09-17 16:11:28 +02:00
|
|
|
|