Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drivers/thermal/qcom/lmh: Fix incorrect error message

It was showing wrong error message as ARM threshold
thremal trip for setting LOW threshold thermal trip.
Fix this incorrect error message for setting LOW
threshold thermal trip.

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Sumeet Pawnikar <sumeet4linux@gmail.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20250710175426.5789-1-sumeet4linux@gmail.com

authored by

Sumeet Pawnikar and committed by
Daniel Lezcano
14b7ea27 b50b2c53

+1 -1
+1 -1
drivers/thermal/qcom/lmh.c
··· 206 206 ret = qcom_scm_lmh_dcvsh(LMH_SUB_FN_THERMAL, LMH_TH_LOW_THRESHOLD, temp_low, 207 207 LMH_NODE_DCVS, node_id, 0); 208 208 if (ret) { 209 - dev_err(dev, "Error setting thermal ARM threshold%d\n", ret); 209 + dev_err(dev, "Error setting thermal LOW threshold%d\n", ret); 210 210 return ret; 211 211 } 212 212