ec/kontron/it8516e: Correct fan setting for PWM mode
The EC firmware expects a 255th while we provide a percentage. Change-Id: Ib06a061b431ac728329043179800729e39e6166b Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: http://review.coreboot.org/3773 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
6d6a2ac055
commit
942b6c2117
|
@ -118,7 +118,7 @@ static void it8516e_set_fan_from_options(const config_t *const config,
|
|||
"Setting it8516e fan%d "
|
||||
"control to %d%% PWM.\n",
|
||||
fan_idx + 1, fan_target);
|
||||
it8516e_set_fan_pwm(fan_idx, fan_target);
|
||||
it8516e_set_fan_pwm(fan_idx, (fan_target * 255) / 100);
|
||||
break;
|
||||
case IT8516E_MODE_SPEED:
|
||||
printk(BIOS_DEBUG,
|
||||
|
|
Loading…
Reference in New Issue