aboutsummaryrefslogtreecommitdiff
path: root/drivers/thermal/thermal_trip.c
diff options
context:
space:
mode:
authorGravatar Rafael J. Wysocki <rafael.j.wysocki@intel.com> 2023-10-12 20:26:46 +0200
committerGravatar Rafael J. Wysocki <rafael.j.wysocki@intel.com> 2023-10-20 19:26:01 +0200
commit234ed6f5fbedf7bc84f9adc08c3e11ca8588ffd8 (patch)
tree3f9f0553ca9580c01d07b8b216e51f65f7cae7f1 /drivers/thermal/thermal_trip.c
parentthermal: trip: Simplify computing trip indices (diff)
downloadlinux-234ed6f5fbedf7bc84f9adc08c3e11ca8588ffd8.tar.gz
linux-234ed6f5fbedf7bc84f9adc08c3e11ca8588ffd8.tar.bz2
linux-234ed6f5fbedf7bc84f9adc08c3e11ca8588ffd8.zip
thermal: trip: Define for_each_trip() macro
Define a new macro for_each_trip() to be used by the thermal core code and thermal governors for walking trips in a given thermal zone. Modify for_each_thermal_trip() to use this macro instead of an open- coded loop over trips. No intentional functional impact. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
Diffstat (limited to 'drivers/thermal/thermal_trip.c')
-rw-r--r--drivers/thermal/thermal_trip.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/thermal/thermal_trip.c b/drivers/thermal/thermal_trip.c
index 6dff0dae6ef6..9e07535d99bb 100644
--- a/drivers/thermal/thermal_trip.c
+++ b/drivers/thermal/thermal_trip.c
@@ -13,10 +13,11 @@ int for_each_thermal_trip(struct thermal_zone_device *tz,
int (*cb)(struct thermal_trip *, void *),
void *data)
{
- int i, ret;
+ struct thermal_trip *trip;
+ int ret;
- for (i = 0; i < tz->num_trips; i++) {
- ret = cb(&tz->trips[i], data);
+ for_each_trip(tz, trip) {
+ ret = cb(trip, data);
if (ret)
return ret;
}