[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <fb56f08a-ca88-44d9-9f88-896b7bd0701c@arm.com>
Date: Fri, 2 Aug 2024 10:56:06 +0100
From: Lukasz Luba <lukasz.luba@....com>
To: "Rafael J. Wysocki" <rjw@...ysocki.net>,
Linux PM <linux-pm@...r.kernel.org>
Cc: Daniel Lezcano <daniel.lezcano@...aro.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [RESEND][PATCH v1 8/8] thermal: trip: Drop
thermal_zone_get_trip()
On 7/29/24 17:12, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rafael.j.wysocki@...el.com>
>
> There are no more callers of thermal_zone_get_trip() in the tree, so
> drop it.
>
> No functional impact.
>
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@...el.com>
> ---
> drivers/thermal/thermal_trip.c | 14 --------------
> include/linux/thermal.h | 2 --
> 2 files changed, 16 deletions(-)
>
> Index: linux-pm/drivers/thermal/thermal_trip.c
> ===================================================================
> --- linux-pm.orig/drivers/thermal/thermal_trip.c
> +++ linux-pm/drivers/thermal/thermal_trip.c
> @@ -108,20 +108,6 @@ void thermal_zone_set_trips(struct therm
> dev_err(&tz->device, "Failed to set trips: %d\n", ret);
> }
>
> -int thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
> - struct thermal_trip *trip)
> -{
> - if (!tz || !trip || trip_id < 0 || trip_id >= tz->num_trips)
> - return -EINVAL;
> -
> - mutex_lock(&tz->lock);
> - *trip = tz->trips[trip_id].trip;
> - mutex_unlock(&tz->lock);
> -
> - return 0;
> -}
> -EXPORT_SYMBOL_GPL(thermal_zone_get_trip);
> -
> int thermal_zone_trip_id(const struct thermal_zone_device *tz,
> const struct thermal_trip *trip)
> {
> Index: linux-pm/include/linux/thermal.h
> ===================================================================
> --- linux-pm.orig/include/linux/thermal.h
> +++ linux-pm/include/linux/thermal.h
> @@ -202,8 +202,6 @@ static inline void devm_thermal_of_zone_
> }
> #endif
>
> -int thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
> - struct thermal_trip *trip);
> int for_each_thermal_trip(struct thermal_zone_device *tz,
> int (*cb)(struct thermal_trip *, void *),
> void *data);
>
>
>
Reviewed-by: Lukasz Luba <lukasz.luba@....com>
Powered by blists - more mailing lists