[PATCH v3 3/7] thermal/core: Export thermal_cooling_device_stats_update()

From: Dmitry Osipenko
Date: Sat May 29 2021 - 13:10:51 EST


NVIDIA Tegra30 thermal sensor driver has a hardware-controlled CPU cooling
feature that halves CPU frequency once a specified trip point is breached.
In order to account the hardware state transitions, which are reported by
interrupt, the sensor driver needs to report the cooling state transition
and this is done by thermal_cooling_device_stats_update(). The sensor
driver could be compiled as a loadable driver module, but this API
function isn't exported, hence export it.

Signed-off-by: Dmitry Osipenko <digetx@xxxxxxxxx>
---
drivers/thermal/thermal_sysfs.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/thermal/thermal_sysfs.c b/drivers/thermal/thermal_sysfs.c
index 1c4aac8464a7..ab373280f853 100644
--- a/drivers/thermal/thermal_sysfs.c
+++ b/drivers/thermal/thermal_sysfs.c
@@ -690,6 +690,7 @@ void thermal_cooling_device_stats_update(struct thermal_cooling_device *cdev,
unlock:
spin_unlock(&stats->lock);
}
+EXPORT_SYMBOL_GPL(thermal_cooling_device_stats_update);

static ssize_t total_trans_show(struct device *dev,
struct device_attribute *attr, char *buf)
--
2.30.2