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

Commit 845c96e6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "PM / devfreq: cache_hwmon: Also print low mrps for debugging"

parents f605f30e d3c2789b
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;