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
This commit is contained in:
Sumeet Pawnikar 2025-07-10 23:24:25 +05:30 committed by Daniel Lezcano
parent b50b2c53f9
commit 14b7ea27bd
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ static int lmh_probe(struct platform_device *pdev)
ret = qcom_scm_lmh_dcvsh(LMH_SUB_FN_THERMAL, LMH_TH_LOW_THRESHOLD, temp_low, ret = qcom_scm_lmh_dcvsh(LMH_SUB_FN_THERMAL, LMH_TH_LOW_THRESHOLD, temp_low,
LMH_NODE_DCVS, node_id, 0); LMH_NODE_DCVS, node_id, 0);
if (ret) { if (ret) {
dev_err(dev, "Error setting thermal ARM threshold%d\n", ret); dev_err(dev, "Error setting thermal LOW threshold%d\n", ret);
return ret; return ret;
} }