Commit 85b21fde authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by Daniel Lezcano
Browse files

thermal/drivers/generic-adc: Register thermal zones as hwmon sensors



Register thermal zones as hwmon sensors to let userspace read
temperatures using standard hwmon interface.

Signed-off-by: default avatarChen-Yu Tsai <wenst@chromium.org>
[Yangtao: only keep devm_thermal_add_hwmon_sysfs]
Signed-off-by: default avatarYangtao Li <frank.li@vivo.com>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20230620090732.50025-11-frank.li@vivo.com
parent 27cc5be1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
#include <linux/slab.h>
#include <linux/thermal.h>

#include "thermal_hwmon.h"

struct gadc_thermal_info {
	struct device *dev;
	struct thermal_zone_device *tz_dev;
@@ -153,6 +155,8 @@ static int gadc_thermal_probe(struct platform_device *pdev)
		return ret;
	}

	devm_thermal_add_hwmon_sysfs(&pdev->dev, gti->tz_dev);

	return 0;
}