summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-12-05 09:38:26 +0100
committerFelix Held <felix-coreboot@felixheld.de>2019-12-06 14:28:43 +0000
commitd3f2a1e4a977d26bf7a0c4e281fada356b75425c (patch)
tree1305201b8dba0ffcb379883c12c186517e44d9d3 /src
parent683657e93ac52a194807d824d417e7fc3226ee9d (diff)
downloadcoreboot-d3f2a1e4a977d26bf7a0c4e281fada356b75425c.tar.gz
coreboot-d3f2a1e4a977d26bf7a0c4e281fada356b75425c.tar.bz2
coreboot-d3f2a1e4a977d26bf7a0c4e281fada356b75425c.zip
superio/fintek: Fix typo
Change-Id: If5c0921e20b26ce558f542f405cf62ae8d4a8101 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37503 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/superio/fintek/common/fan_control.h2
-rw-r--r--src/superio/fintek/f81803a/fan_control.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/superio/fintek/common/fan_control.h b/src/superio/fintek/common/fan_control.h
index c3167782bea2..80f17dd0c279 100644
--- a/src/superio/fintek/common/fan_control.h
+++ b/src/superio/fintek/common/fan_control.h
@@ -115,7 +115,7 @@ struct fintek_fan {
#define HWM_STATUS_INVALID_SECTION_VALUE -9
#define HWM_STATUS_BOUNDARY_WRONG_ORDER -10
#define HWM_STATUS_SECTIONS_WRONG_ORDER -11
-#define HWM_STATUS_WARNING_SENSOR_DISCONECTED 1
+#define HWM_STATUS_WARNING_SENSOR_DISCONNECTED 1
#define HWM_STATUS_WARNING_FAN_NOT_PWM 2
#define CPU_DAMAGE_TEMP 110
diff --git a/src/superio/fintek/f81803a/fan_control.c b/src/superio/fintek/f81803a/fan_control.c
index 41fd0d3d5069..a08180a7f941 100644
--- a/src/superio/fintek/f81803a/fan_control.c
+++ b/src/superio/fintek/f81803a/fan_control.c
@@ -159,16 +159,16 @@ int set_sensor_type(u16 base_address, external_sensor sensor,
switch (sensor) {
case EXTERNAL_SENSOR1:
if (sensor_status & TP_EXTERNAL_SENSOR1_OPEN) {
- printk(BIOS_WARNING, "Sensor 1 disconected!\n");
- return HWM_STATUS_WARNING_SENSOR_DISCONECTED;
+ printk(BIOS_WARNING, "Sensor 1 disconnected!\n");
+ return HWM_STATUS_WARNING_SENSOR_DISCONNECTED;
}
hwm_reg_modify(base_address, TP_SENSOR_TYPE,
TP_SENSOR1_TYPE_SHIFT, TP_SENSOR_TYPE_MASK, type);
break;
case EXTERNAL_SENSOR2:
if (sensor_status & TP_EXTERNAL_SENSOR2_OPEN) {
- printk(BIOS_WARNING, "Sensor 2 disconected!\n");
- return HWM_STATUS_WARNING_SENSOR_DISCONECTED;
+ printk(BIOS_WARNING, "Sensor 2 disconnected!\n");
+ return HWM_STATUS_WARNING_SENSOR_DISCONNECTED;
}
hwm_reg_modify(base_address, TP_SENSOR_TYPE,
TP_SENSOR2_TYPE_SHIFT, TP_SENSOR_TYPE_MASK, type);