thermal/drivers/qcom: Demote error log of thermal zone register to debug
authorManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Sat, 29 Oct 2022 05:29:33 +0000 (10:59 +0530)
committerDaniel Lezcano <daniel.lezcano@kernel.org>
Wed, 14 Dec 2022 14:25:40 +0000 (15:25 +0100)
devm_thermal_of_zone_register() can fail with -ENODEV if thermal zone for
the channel is not represented in DT. This is perfectly fine since not all
sensors needs to be used for thermal zones but only a few in real world.

So demote the error log to debug to avoid spamming users.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Link: https://lore.kernel.org/r/20221029052933.32421-1-manivannan.sadhasivam@linaro.org
Signed-off-by: Daniel Lezcano <daniel.lezcano@kernel.org>
drivers/thermal/qcom/qcom-spmi-adc-tm5.c

index 88462a4628fb5d7047f9b812bfdaa4688e6f8cc8..ff47fc9ac9c5e872021f687bb567e8b767c9f448 100644 (file)
@@ -678,7 +678,7 @@ static int adc_tm5_register_tzd(struct adc_tm5_chip *adc_tm)
                                                    &adc_tm5_thermal_ops);
                if (IS_ERR(tzd)) {
                        if (PTR_ERR(tzd) == -ENODEV) {
-                               dev_warn(adc_tm->dev, "thermal sensor on channel %d is not used\n",
+                               dev_dbg(adc_tm->dev, "thermal sensor on channel %d is not used\n",
                                         adc_tm->channels[i].channel);
                                continue;
                        }