aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/google/stout/ec.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mainboard/google/stout/ec.c b/src/mainboard/google/stout/ec.c
index 660bb76361..59987a156d 100644
--- a/src/mainboard/google/stout/ec.c
+++ b/src/mainboard/google/stout/ec.c
@@ -75,10 +75,6 @@ void stout_ec_finalize_smm(void)
if (ec_reg & 0x8) {
printk(BIOS_ERR, " EC Fan Error\n");
critical_shutdown = 1;
-#if CONFIG(ELOG_GSMI)
- elog_add_event_word(EC_HOST_EVENT_BATTERY_CRITICAL,
- EC_HOST_EVENT_THROTTLE_START);
-#endif
}
@@ -86,10 +82,6 @@ void stout_ec_finalize_smm(void)
if (ec_reg & 0x80) {
printk(BIOS_ERR, " EC Thermal Device Error\n");
critical_shutdown = 1;
-#if CONFIG(ELOG_GSMI)
- elog_add_event_word(EC_HOST_EVENT_BATTERY_CRITICAL,
- EC_HOST_EVENT_THERMAL);
-#endif
}
@@ -99,17 +91,10 @@ void stout_ec_finalize_smm(void)
if ((ec_reg & 0xCF) == 0xC0) {
printk(BIOS_ERR, " EC Critical Battery Error\n");
critical_shutdown = 1;
-#if CONFIG(ELOG_GSMI)
- elog_add_event_word(ELOG_TYPE_EC_EVENT,
- EC_HOST_EVENT_BATTERY_CRITICAL);
-#endif
}
if ((ec_reg & 0x8F) == 0x8F) {
printk(BIOS_ERR, " EC Read Battery Error\n");
-#if CONFIG(ELOG_GSMI)
- elog_add_event_word(ELOG_TYPE_EC_EVENT, EC_HOST_EVENT_BATTERY);
-#endif
}