PM / devfreq: cache_hwmon: Also print low mrps for debugging
Print out all three levels of requests for debugging. Change-Id: I1e0d12c46386c1aed6b0bfe878449d070fd1adcc Signed-off-by: Junjie Wu <junjiew@codeaurora.org>
This commit is contained in:
parent
e6ce87f53c
commit
2830b6d0c9
1 changed files with 3 additions and 3 deletions
|
@ -133,9 +133,9 @@ static unsigned long measure_mrps_and_set_irq(struct cache_hwmon_node *node,
|
|||
preempt_enable();
|
||||
|
||||
dev_dbg(hw->df->dev.parent,
|
||||
"stat H=%3lu, M=%3lu, T=%3lu, b=%3u, f=%4lu, us=%d\n",
|
||||
stat->mrps[HIGH], stat->mrps[MED],
|
||||
stat->mrps[HIGH] + stat->mrps[MED],
|
||||
"stat H=%3lu, M=%3lu, L=%3lu, T=%3lu, b=%3u, f=%4lu, us=%d\n",
|
||||
stat->mrps[HIGH], stat->mrps[MED], stat->mrps[LOW],
|
||||
stat->mrps[HIGH] + stat->mrps[MED] + stat->mrps[LOW],
|
||||
stat->busy_percent, hw->df->previous_freq / 1000, us);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue