aboutsummaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2012-07-16 17:07:15 -0700
committerColin Cross <ccross@android.com>2014-03-19 13:09:12 -0700
commit31ab18911a5c1a94cebe234d5636dadecf2c3c1d (patch)
tree345b91176bb77a688937fc876f40165bdda5f1fd /include/trace
parent8a2a1300ffe002c8f57ec6c692587c2c5b15627b (diff)
cpufreq: interactive: handle speed up and down in the realtime task
Not useful to have a separate, non-realtime workqueue for speed down events, avoid priority inversion for speed up events. Change-Id: Iddcd05545245c847aa1bbe0b8790092914c813d2 Signed-off-by: Todd Poynor <toddpoynor@google.com>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/cpufreq_interactive.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/trace/events/cpufreq_interactive.h b/include/trace/events/cpufreq_interactive.h
index ea83664a4e6..ecec7970b87 100644
--- a/include/trace/events/cpufreq_interactive.h
+++ b/include/trace/events/cpufreq_interactive.h
@@ -28,13 +28,7 @@ DECLARE_EVENT_CLASS(set,
__entry->actualfreq)
);
-DEFINE_EVENT(set, cpufreq_interactive_up,
- TP_PROTO(u32 cpu_id, unsigned long targfreq,
- unsigned long actualfreq),
- TP_ARGS(cpu_id, targfreq, actualfreq)
-);
-
-DEFINE_EVENT(set, cpufreq_interactive_down,
+DEFINE_EVENT(set, cpufreq_interactive_setspeed,
TP_PROTO(u32 cpu_id, unsigned long targfreq,
unsigned long actualfreq),
TP_ARGS(cpu_id, targfreq, actualfreq)