Skip to content

Commit 16f9442

Browse files
digetxdlezcano
authored andcommitted
thermal/drivers/tegra-soctherm: Silence message about clamped temperature
The Tegra soctherm driver prints message about the clamped temperature trip each time when thermal core disables the low/high trip. The message is confusing and creates illusion that driver is malfunctioning. Turn that noisy info message into a debug message. Signed-off-by: Dmitry Osipenko <[email protected]> Signed-off-by: Daniel Lezcano <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 454f2ed commit 16f9442

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/thermal/tegra/soctherm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,8 @@ static int enforce_temp_range(struct device *dev, int trip_temp)
450450

451451
temp = clamp_val(trip_temp, min_low_temp, max_high_temp);
452452
if (temp != trip_temp)
453-
dev_info(dev, "soctherm: trip temperature %d forced to %d\n",
454-
trip_temp, temp);
453+
dev_dbg(dev, "soctherm: trip temperature %d forced to %d\n",
454+
trip_temp, temp);
455455
return temp;
456456
}
457457

0 commit comments

Comments
 (0)