* [PATCH] thermal: imx: do not split quoted string across lines
@ 2026-05-11 17:42 Mayur Kumar
0 siblings, 0 replies; only message in thread
From: Mayur Kumar @ 2026-05-11 17:42 UTC (permalink / raw)
To: rafael, daniel.lezcano, Frank.Li, s.hauer, rui.zhang, lukasz.luba,
festevam
Cc: linux-pm, imx, linux-arm-kernel, linux-kernel, kernel,
Mayur Kumar
The checkpatch tool warns against splitting quoted strings across
multiple lines. Join the dev_info message into a single line to
improve the ability to grep for the message in the source.
Signed-off-by: Mayur Kumar <kmayur809@gmail.com>
---
drivers/thermal/imx_thermal.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/thermal/imx_thermal.c b/drivers/thermal/imx_thermal.c
index 38c993d1bcb..5aaacbc5347 100644
--- a/drivers/thermal/imx_thermal.c
+++ b/drivers/thermal/imx_thermal.c
@@ -693,8 +693,8 @@ static int imx_thermal_probe(struct platform_device *pdev)
goto clk_disable;
}
- dev_info(dev, "%s CPU temperature grade - max:%dC"
- " critical:%dC passive:%dC\n", data->temp_grade,
+ dev_info(dev, "%s CPU temperature grade - max:%dC critical:%dC passive:%dC\n",
+ data->temp_grade,
data->temp_max / 1000, trips[IMX_TRIP_CRITICAL].temperature / 1000,
trips[IMX_TRIP_PASSIVE].temperature / 1000);
--
2.34.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-11 17:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 17:42 [PATCH] thermal: imx: do not split quoted string across lines Mayur Kumar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox