Commit 53f04ca8 authored by Daniel Lezcano's avatar Daniel Lezcano
Browse files

thermal/core: Remove pointless test with the THERMAL_TRIPS_NONE macro



The THERMAL_TRIPS_NONE is equal to -1, it is pointless to do a
conversion in this function.

Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: default avatarThara Gopinath <thara.gopinath@linaro.org>
Link: https://lore.kernel.org/r/20201214233811.485669-3-daniel.lezcano@linaro.org
parent a20b995b
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -875,9 +875,6 @@ trip_point_show(struct device *dev, struct device_attribute *attr, char *buf)
	instance =
	    container_of(attr, struct thermal_instance, attr);

	if (instance->trip == THERMAL_TRIPS_NONE)
		return sprintf(buf, "-1\n");
	else
	return sprintf(buf, "%d\n", instance->trip);
}