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

Commit ce1d9491 authored by Joe Perches's avatar Joe Perches Committed by Zhang Rui
Browse files

thermal: Use bool function return values of true/false not 1/0



Use the normal return values for bool functions

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarZhang Rui <rui.zhang@intel.com>
parent b787f68c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz)
static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz,
					    int trip)
{
	return 0;
	return false;
}
static inline const struct thermal_trip *
of_thermal_get_trip_points(struct thermal_zone_device *tz)