mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
21 lines
445 B
C
21 lines
445 B
C
|
/*
|
||
|
* 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>
|
||
|
#include <linux/slab.h>
|
||
|
|
||
|
#define CREATE_TRACE_POINTS
|
||
|
#include <trace/events/power.h>
|
||
|
|
||
|
EXPORT_TRACEPOINT_SYMBOL_GPL(power_start);
|
||
|
EXPORT_TRACEPOINT_SYMBOL_GPL(power_end);
|
||
|
EXPORT_TRACEPOINT_SYMBOL_GPL(power_frequency);
|
||
|
|