Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Arjan van de Ven | 6161352 | 2009-09-17 16:11:28 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Power trace points |
| 4 | * |
| 5 | * Copyright (C) 2009 Arjan van de Ven <arjan@linux.intel.com> |
| 6 | */ |
| 7 | |
| 8 | #include <linux/string.h> |
| 9 | #include <linux/types.h> |
| 10 | #include <linux/workqueue.h> |
| 11 | #include <linux/sched.h> |
| 12 | #include <linux/module.h> |
Arjan van de Ven | 6161352 | 2009-09-17 16:11:28 +0200 | [diff] [blame] | 13 | |
| 14 | #define CREATE_TRACE_POINTS |
| 15 | #include <trace/events/power.h> |
| 16 | |
Todd E Brandt | c9257f7 | 2014-12-12 20:06:46 -0800 | [diff] [blame] | 17 | EXPORT_TRACEPOINT_SYMBOL_GPL(suspend_resume); |
Thomas Renninger | 25e4193 | 2011-01-03 17:50:44 +0100 | [diff] [blame] | 18 | EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_idle); |
Rafael J. Wysocki | 9bdcb44 | 2016-04-02 01:09:12 +0200 | [diff] [blame] | 19 | EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_frequency); |
Shilpasri G Bhat | 0306e48 | 2016-02-03 01:11:40 +0530 | [diff] [blame] | 20 | EXPORT_TRACEPOINT_SYMBOL_GPL(powernv_throttle); |
Arjan van de Ven | 6161352 | 2009-09-17 16:11:28 +0200 | [diff] [blame] | 21 | |