On Wed, 9 Jan 2013 08:59:08 -0800, Guenter Roeck wrote: > 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: Guenter Roeck <linux@xxxxxxxxxxxx> > --- > drivers/platform/x86/eeepc-laptop.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/platform/x86/eeepc-laptop.c b/drivers/platform/x86/eeepc-laptop.c > index 528e949..a5da0b5 100644 > --- a/drivers/platform/x86/eeepc-laptop.c > +++ b/drivers/platform/x86/eeepc-laptop.c > @@ -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); > } Acked-by: Jean Delvare <khali@xxxxxxxxxxxx> -- Jean Delvare _______________________________________________ lm-sensors mailing list lm-sensors@xxxxxxxxxxxxxx http://lists.lm-sensors.org/mailman/listinfo/lm-sensors