aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/stout/ec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/stout/ec.c')
-rw-r--r--src/mainboard/google/stout/ec.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainboard/google/stout/ec.c b/src/mainboard/google/stout/ec.c
index 6e9b490917..05ff973a47 100644
--- a/src/mainboard/google/stout/ec.c
+++ b/src/mainboard/google/stout/ec.c
@@ -55,14 +55,12 @@ void stout_ec_finalize_smm(void)
critical_shutdown = 1;
}
-
/* Thermal Device Error : Peripheral Status 3 (0x35) bit 8 */
if (ec_reg & 0x80) {
printk(BIOS_ERR, " EC Thermal Device Error\n");
critical_shutdown = 1;
}
-
/* Critical Battery Error */
ec_reg = ec_read(EC_MBAT_STATUS);
@@ -75,7 +73,6 @@ void stout_ec_finalize_smm(void)
printk(BIOS_ERR, " EC Read Battery Error\n");
}
-
if (critical_shutdown) {
printk(BIOS_ERR, "EC critical_shutdown");