thermal/drivers/ti-soc: Remove redundant msg in ti_thermal_expose_sensor()
authorYangtao Li <frank.li@vivo.com>
Tue, 20 Jun 2023 09:07:29 +0000 (17:07 +0800)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 26 Jun 2023 10:03:14 +0000 (12:03 +0200)
The upper-layer devm_thermal_add_hwmon_sysfs() function can directly
print error information.

Signed-off-by: Yangtao Li <frank.li@vivo.com>
Acked-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20230620090732.50025-8-frank.li@vivo.com
drivers/thermal/ti-soc-thermal/ti-thermal-common.c

index 6a5335931f4db16760085acc1860ce6a7f8789c9..d414a4b7a94a454a88df5207fd07bc9653c11926 100644 (file)
@@ -182,8 +182,7 @@ int ti_thermal_expose_sensor(struct ti_bandgap *bgp, int id,
        ti_bandgap_write_update_interval(bgp, data->sensor_id,
                                         TI_BANDGAP_UPDATE_INTERVAL_MS);
 
-       if (devm_thermal_add_hwmon_sysfs(bgp->dev, data->ti_thermal))
-               dev_warn(bgp->dev, "failed to add hwmon sysfs attributes\n");
+       devm_thermal_add_hwmon_sysfs(bgp->dev, data->ti_thermal);
 
        return 0;
 }