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

Commit c73bad74 authored by Guenter Roeck's avatar Guenter Roeck
Browse files

platform/x86: (eeepc-laptop) Replace SENSORS_LIMIT with clamp_val



SENSORS_LIMIT and clamp_val have the same functionality, so retire SENSORS_LIMIT
as it is no longer needed.

The change reduces text size by 26 bytes and bss size by 16 bytes on x86_86
builds.

Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Acked-by: default avatarJean Delvare <khali@linux-fr.org>
parent 2a844c14
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1007,7 +1007,7 @@ static int eeepc_get_fan_pwm(void)

static void eeepc_set_fan_pwm(int value)
{
	value = SENSORS_LIMIT(value, 0, 255);
	value = clamp_val(value, 0, 255);
	value = value * 100 / 255;
	ec_write(EEEPC_EC_FAN_PWM, value);
}