[PATCH v1 05/18] thermal/drivers/imx: Migrate to thermal_zone_device_register()

From: AngeloGioacchino Del Regno
Date: Tue Jan 30 2024 - 06:15:04 EST


The thermal API has a new thermal_zone_device_register() function which
is deprecating the older thermal_zone_device_register_with_trips() and
thermal_tripless_zone_device_register().

Migrate to the new thermal zone device registration function.

Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@xxxxxxxxxxxxx>
---
drivers/thermal/imx_thermal.c | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/drivers/thermal/imx_thermal.c b/drivers/thermal/imx_thermal.c
index 7019c4fdd549..16fb49194fb3 100644
--- a/drivers/thermal/imx_thermal.c
+++ b/drivers/thermal/imx_thermal.c
@@ -599,6 +599,15 @@ static inline void imx_thermal_unregister_legacy_cooling(struct imx_thermal_data

static int imx_thermal_probe(struct platform_device *pdev)
{
+ struct thermal_zone_device_params tzdp = {
+ .tzp = {
+ .type = "imx_thermal_zone",
+ .ops = &imx_tz_ops,
+ .mask = BIT(IMX_TRIP_PASSIVE),
+ .passive_delay = IMX_PASSIVE_DELAY,
+ .polling_delay = IMX_POLLING_DELAY,
+ }
+ };
struct imx_thermal_data *data;
struct regmap *map;
int measure_freq;
@@ -696,13 +705,11 @@ static int imx_thermal_probe(struct platform_device *pdev)
goto legacy_cleanup;
}

- data->tz = thermal_zone_device_register_with_trips("imx_thermal_zone",
- trips,
- ARRAY_SIZE(trips),
- BIT(IMX_TRIP_PASSIVE), data,
- &imx_tz_ops, NULL,
- IMX_PASSIVE_DELAY,
- IMX_POLLING_DELAY);
+ tzdp.tzp.devdata = data;
+ tzdp.tzp.trips = &trips;
+ tzdp.tzp.num_trips = ARRAY_SIZE(trips);
+
+ data->tz = thermal_zone_device_register(&tzdp);
if (IS_ERR(data->tz)) {
ret = PTR_ERR(data->tz);
dev_err(&pdev->dev,
--
2.43.0