summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThierry Strudel <tstrudel@google.com>2016-03-23 10:02:15 -0700
committerDmitry Shmidt <dimitrysh@google.com>2016-03-23 19:49:05 +0000
commit87977cb3223256f62b18c31bc580715332ddce86 (patch)
treed172b96f9674f2a66b5643af4c1b437ba94298d3 /include
parentf06e869f936e548fd3fd78ddcbebe171f0defadb (diff)
trace: cpufreq: fix typo in min/max cpufreq
Change-Id: Ieed402d3a912b7a318826e101efe2c24b07ebfe4 Signed-off-by: Thierry Strudel <tstrudel@google.com>
Diffstat (limited to 'include')
-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;
),