aboutsummaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorThierry Strudel <tstrudel@google.com>2016-03-23 10:02:15 -0700
committerAmit Pundir <amit.pundir@linaro.org>2016-04-07 16:50:03 +0530
commit7f2bcf32a33b8b4e91a0cbf3b3b735fa8e561458 (patch)
tree75bc535cf09757cb522d480b920a6452c5f52723 /include/trace
parent815899d23490b00d21bdc4e1d4c9bfff41670270 (diff)
trace: cpufreq: fix typo in min/max cpufreq
Change-Id: Ieed402d3a912b7a318826e101efe2c24b07ebfe4 Signed-off-by: Thierry Strudel <tstrudel@google.com>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/power.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/power.h b/include/trace/events/power.h
index de77035567c4..9af0d898016a 100644
--- a/include/trace/events/power.h
+++ b/include/trace/events/power.h
@@ -135,7 +135,7 @@ TRACE_EVENT(cpu_frequency_limits,
TP_fast_assign(
__entry->min_freq = min_freq;
- __entry->max_freq = min_freq;
+ __entry->max_freq = max_freq;
__entry->cpu_id = cpu_id;
),