diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-01-11 19:57:51 +0100 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2020-01-12 06:07:31 +0000 |
commit | e7840af3b75b01c4146581a8afdfe69a29766697 (patch) | |
tree | 96ac20ab39adf84487ea52f6cecd8c56d7ae4d1e | |
parent | 891f2bc6c8d22f0d9d5d2a28699170c7515aaa7c (diff) | |
download | coreboot-e7840af3b75b01c4146581a8afdfe69a29766697.tar.xz |
mb/lenovo/g505s: Fix typos
Change-Id: I38fdc8ff92cffe467b2ca176e841bf601be9d24b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38369
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
-rw-r--r-- | src/mainboard/lenovo/g505s/BiosCallOuts.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/lenovo/g505s/BiosCallOuts.c b/src/mainboard/lenovo/g505s/BiosCallOuts.c index 2eb36fa4d9..876b524a78 100644 --- a/src/mainboard/lenovo/g505s/BiosCallOuts.c +++ b/src/mainboard/lenovo/g505s/BiosCallOuts.c @@ -100,7 +100,7 @@ static const CODEC_TBL_LIST CodecTableList[] = */ static void oem_fan_control(FCH_DATA_BLOCK *FchParams) { - /* Enable IMC fan control. the recommand way */ + /* Enable IMC fan control. the recommend way */ if (CONFIG(HUDSON_IMC_FWM)) { imc_reg_init(); @@ -156,11 +156,11 @@ static void oem_fan_control(FCH_DATA_BLOCK *FchParams) /* NOTE: * FchInitLateHwm will overwrite the EcStruct with EcDefaultMassege, - * AGESA put EcDefaultMassege as global data in ROM, so we can't overwride it. - * so we remove it from AGESA code. Please Seee FchInitLateHwm. + * AGESA put EcDefaultMassege as global data in ROM, so we can't overwrite it. + * so we remove it from AGESA code. Please See FchInitLateHwm. */ } else { - /* HWM fan control, the way not recommand */ + /* HWM fan control, the way not recommend */ FchParams->Imc.ImcEnable = FALSE; FchParams->Hwm.HwMonitorEnable = TRUE; FchParams->Hwm.HwmFchtsiAutoPoll = TRUE;/* 1 enable, 0 disable TSI Auto Polling */ |