diff mbox series

[v1,4/7] thermal/debugfs: Fix up units in "mitigations" files

Message ID 13515448.uLZWGnKmhe@kreacher
State New
Headers show
Series thermal/debugfs: Assorted improvements for the 6.11 cycle | expand

Commit Message

Rafael J. Wysocki May 9, 2024, 7:14 p.m. UTC
From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Print temperature units as m°C rather than °mC (the meaning of which is
unclear) and add time unit to the duration column.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---
 drivers/thermal/thermal_debugfs.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

Index: linux-pm/drivers/thermal/thermal_debugfs.c
===================================================================
--- linux-pm.orig/drivers/thermal/thermal_debugfs.c
+++ linux-pm/drivers/thermal/thermal_debugfs.c
@@ -792,7 +792,7 @@  static int tze_seq_show(struct seq_file
 	seq_printf(s, ",-Mitigation at %llums, duration%c%llums\n",
 		   ktime_to_ms(tze->timestamp), c, duration_ms);
 
-	seq_printf(s, "| trip |     type | temp(°mC) | hyst(°mC) |  duration   |  avg(°mC) |  min(°mC) |  max(°mC) |\n");
+	seq_printf(s, "| trip |     type | temp(m°C) | hyst(m°C) | duration(ms) |  avg(m°C) |  min(m°C) |  max(m°C) |\n");
 
 	for_each_trip_desc(tz, td) {
 		const struct thermal_trip *trip = &td->trip;
@@ -842,7 +842,7 @@  static int tze_seq_show(struct seq_file
 			   8, type,
 			   9, trip->temperature,
 			   9, trip->hysteresis,
-			   c, 10, duration_ms,
+			   c, 11, duration_ms,
 			   9, trip_stats->avg,
 			   9, trip_stats->min,
 			   9, trip_stats->max);