aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/me.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/cannonlake/me.c')
-rw-r--r--src/soc/intel/cannonlake/me.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/intel/cannonlake/me.c b/src/soc/intel/cannonlake/me.c
index 3fedc6374e..c9748b7343 100644
--- a/src/soc/intel/cannonlake/me.c
+++ b/src/soc/intel/cannonlake/me.c
@@ -235,7 +235,7 @@ fail:
}
BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_EXIT, print_me_version, NULL);
-void dump_me_status(void)
+void dump_me_status(void *unused)
{
union hfsts1 hfsts1;
union hfsts2 hfsts2;
@@ -297,3 +297,6 @@ void dump_me_status(void)
printk(BIOS_DEBUG, "ME: TXT Support : %s\n",
hfsts6.fields.txt_support ? "YES" : "NO");
}
+
+BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_ENTRY, dump_me_status, NULL);
+BOOT_STATE_INIT_ENTRY(BS_OS_RESUME_CHECK, BS_ON_EXIT, dump_me_status, NULL);