aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/drivers/elog/elog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/elog/elog.c b/src/drivers/elog/elog.c
index 85b79983a5..e41b55bba5 100644
--- a/src/drivers/elog/elog.c
+++ b/src/drivers/elog/elog.c
@@ -797,7 +797,7 @@ static bool elog_do_add_boot_count(void)
#endif
}
-static void ramstage_elog_add_boot_count(void)
+static void elog_add_boot_count(void)
{
if (elog_do_add_boot_count()) {
elog_add_event_dword(ELOG_TYPE_BOOT, boot_count_read());
@@ -860,7 +860,7 @@ int elog_init(void)
es->full_threshold, es->shrink_size);
if (ENV_RAMSTAGE)
- ramstage_elog_add_boot_count();
+ elog_add_boot_count();
return 0;
}