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:
Nico Huber 2013-07-12 14:40:23 +02:00 committed by Stefan Reinauer
parent 6d6a2ac055
commit 942b6c2117
1 changed files with 1 additions and 1 deletions

View File

@ -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,