summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/drivers/elog/Kconfig6
-rw-r--r--src/drivers/elog/Makefile.inc8
2 files changed, 4 insertions, 10 deletions
diff --git a/src/drivers/elog/Kconfig b/src/drivers/elog/Kconfig
index bc25d1cebb..19b33318c4 100644
--- a/src/drivers/elog/Kconfig
+++ b/src/drivers/elog/Kconfig
@@ -23,12 +23,6 @@ config ELOG_CBMEM
but it means that events added at runtime via the SMI handler
will not be reflected in the CBMEM copy of the log.
-config ELOG_PRERAM
- bool
- default n
- help
- This option will enable event logging from the preram stage.
-
config ELOG_GSMI
depends on HAVE_SMI_HANDLER
bool "SMI interface to write and clear event log"
diff --git a/src/drivers/elog/Makefile.inc b/src/drivers/elog/Makefile.inc
index cce1c3d6d7..370eef44d1 100644
--- a/src/drivers/elog/Makefile.inc
+++ b/src/drivers/elog/Makefile.inc
@@ -1,7 +1,7 @@
-bootblock-$(CONFIG_ELOG_PRERAM) += elog.c
-verstage-$(CONFIG_ELOG_PRERAM) += elog.c
-romstage-$(CONFIG_ELOG_PRERAM) += elog.c
-postcar-$(CONFIG_ELOG_PRERAM) += elog.c
+bootblock-$(CONFIG_ELOG) += elog.c
+verstage-$(CONFIG_ELOG) += elog.c
+romstage-$(CONFIG_ELOG) += elog.c
+postcar-$(CONFIG_ELOG) += elog.c
ramstage-$(CONFIG_ELOG) += elog.c
smm-$(CONFIG_ELOG_GSMI) += elog.c gsmi.c