Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00c4d2c9 authored by Daniel Lezcano's avatar Daniel Lezcano Committed by Kevin Wangtao
Browse files

BACKPORT: thermal/drivers/hisi: Remove thermal data back pointer



The presence of the thermal data pointer in the sensor structure has the unique
purpose of accessing the thermal data in the interrupt handler.

The sensor pointer is passed when registering the interrupt handler, replace the
cookie by the thermal data pointer, so the back pointer is no longer needed.

Change-Id: I7b107fcbef723cc74b24aa45420ce12454d5800a
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
(cherry picked from commit 81d7cb7946f03d339244e1a822b7da246d8c79ff)
Signed-off-by: default avatarKevin Wangtao <kevin.wangtao@hisilicon.com>
parent aa3276c9
Loading
Loading
Loading
Loading
+5 −6
Original line number Original line Diff line number Diff line
@@ -47,7 +47,6 @@
#define HISI_DEFAULT_SENSOR		2
#define HISI_DEFAULT_SENSOR		2


struct hisi_thermal_sensor {
struct hisi_thermal_sensor {
	struct hisi_thermal_data *thermal;
	struct thermal_zone_device *tzd;
	struct thermal_zone_device *tzd;
	uint32_t id;
	uint32_t id;
	uint32_t thres_temp;
	uint32_t thres_temp;
@@ -211,10 +210,10 @@ static void hisi_thermal_disable_sensor(struct hisi_thermal_data *data)
	mutex_unlock(&data->thermal_lock);
	mutex_unlock(&data->thermal_lock);
}
}


static int hisi_thermal_get_temp(void *_sensor, int *temp)
static int hisi_thermal_get_temp(void *__data, int *temp)
{
{
	struct hisi_thermal_sensor *sensor = _sensor;
	struct hisi_thermal_data *data = __data;
	struct hisi_thermal_data *data = sensor->thermal;
	struct hisi_thermal_sensor *sensor = &data->sensor;


	*temp = hisi_thermal_get_temperature(data->regs);
	*temp = hisi_thermal_get_temperature(data->regs);


@@ -262,10 +261,10 @@ static int hisi_thermal_register_sensor(struct platform_device *pdev,
	const struct thermal_trip *trip;
	const struct thermal_trip *trip;


	sensor->id = index;
	sensor->id = index;
	sensor->thermal = data;


	sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
	sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
				sensor->id, sensor, &hisi_of_thermal_ops);
							   sensor->id, data,
							   &hisi_of_thermal_ops);
	if (IS_ERR(sensor->tzd)) {
	if (IS_ERR(sensor->tzd)) {
		ret = PTR_ERR(sensor->tzd);
		ret = PTR_ERR(sensor->tzd);
		sensor->tzd = NULL;
		sensor->tzd = NULL;