Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3c2789b authored by Junjie Wu's avatar Junjie Wu
Browse files

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: default avatarJunjie Wu <junjiew@codeaurora.org>
parent b3f022f8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;