summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/pavilion_m6_1035dx
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-01-11 19:50:30 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-01-28 18:39:14 +0000
commit291e88a01ceb5949b89f334e1428d7a160a2637e (patch)
tree2ea3d15684773dd747a8ddef8507fe25b910dc28 /src/mainboard/hp/pavilion_m6_1035dx
parent71a7ca786e520eaa48f7a660da44d88d64cd2375 (diff)
downloadcoreboot-291e88a01ceb5949b89f334e1428d7a160a2637e.tar.xz
mb/hp/pavilion_m6_1035dx: Fix typos
Change-Id: Ibd6f6bf7983382901a5327121d277606f609eca4 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38365 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/hp/pavilion_m6_1035dx')
-rw-r--r--src/mainboard/hp/pavilion_m6_1035dx/BiosCallOuts.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/BiosCallOuts.c b/src/mainboard/hp/pavilion_m6_1035dx/BiosCallOuts.c
index 2eb36fa4d9..dfe53eaad9 100644
--- a/src/mainboard/hp/pavilion_m6_1035dx/BiosCallOuts.c
+++ b/src/mainboard/hp/pavilion_m6_1035dx/BiosCallOuts.c
@@ -92,15 +92,15 @@ static const CODEC_TBL_LIST CodecTableList[] =
#define FREQ_14HZ 0xFE
#define FREQ_11HZ 0xFF
-/* Parmer Hardware Monitor Fan Control
+/* Hardware Monitor Fan Control
* Hardware limitation:
- * HWM failed to read the input temperture vi I2C,
- * if other software switch the I2C switch by mistake or intention.
- * We recommend to using IMC to control Fans, instead of HWM.
+ * HWM failed to read the input temperature via I2C,
+ * if other software switches the I2C switch by mistake or intention.
+ * We recommend using IMC to control Fans, instead of HWM.
*/
static void oem_fan_control(FCH_DATA_BLOCK *FchParams)
{
- /* Enable IMC fan control. the recommand way */
+ /* Enable IMC fan control, the recommended way */
if (CONFIG(HUDSON_IMC_FWM)) {
imc_reg_init();
@@ -155,12 +155,12 @@ static void oem_fan_control(FCH_DATA_BLOCK *FchParams)
FchParams->Imc.EcStruct.IMCFUNSupportBitMap = 0x111;//BIT0 | BIT4 |BIT8;
/* 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.
+ * FchInitLateHwm will overwrite the EcStruct with EcDefaultMessage,
+ * AGESA puts EcDefaultMessage 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 recommended */
FchParams->Imc.ImcEnable = FALSE;
FchParams->Hwm.HwMonitorEnable = TRUE;
FchParams->Hwm.HwmFchtsiAutoPoll = TRUE;/* 1 enable, 0 disable TSI Auto Polling */