Skip to content

Commit

Permalink
thermal/drivers/generic-adc: Register thermal zones as hwmon sensors
Browse files Browse the repository at this point in the history
Register thermal zones as hwmon sensors to let userspace read
temperatures using standard hwmon interface.

Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
[Yangtao: only keep devm_thermal_add_hwmon_sysfs]
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20230620090732.50025-11-frank.li@vivo.com
  • Loading branch information
Chen-Yu Tsai authored and Daniel Lezcano committed Jun 26, 2023
1 parent 27cc5be commit 85b21fd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers/thermal/thermal-generic-adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 85b21fd

Please sign in to comment.