summaryrefslogtreecommitdiff
path: root/src/superio/fintek/f81803a/fan_control.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-03-30 16:44:54 +0200
committerFelix Held <felix-coreboot@felixheld.de>2020-03-31 18:59:08 +0000
commit8dcadc9189d538dfcc0d8247bcd027afd5697244 (patch)
treef8163fe7eeb54c7c4d1ff6c771b473d7864e71c1 /src/superio/fintek/f81803a/fan_control.c
parent3e666898cd99f4e15a39e360bb594d499e738b2d (diff)
superio/fintek: Improve code formatting
Change-Id: I5ae2a2da1994fcc587540586d7404ebf18eb2ca0 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39928 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/superio/fintek/f81803a/fan_control.c')
-rw-r--r--src/superio/fintek/f81803a/fan_control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/fintek/f81803a/fan_control.c b/src/superio/fintek/f81803a/fan_control.c
index 3b01a64e4f..2143f2e8d0 100644
--- a/src/superio/fintek/f81803a/fan_control.c
+++ b/src/superio/fintek/f81803a/fan_control.c
@@ -128,7 +128,7 @@ static int check_value_seq(u8 *values, u8 count)
u8 current_value, i;
for (i = 0; i < count; i++) {
current_value = values[i];
- if (current_value > CPU_DAMAGE_TEMP)
+ if (current_value > CPU_DAMAGE_TEMP)
return STATUS_INVALID_VALUE;
if (current_value >= last_value)
return STATUS_INVALID_ORDER;