summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/denverton_ns/bootblock/bootblock.c
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2018-05-15 17:48:30 -0700
committerJulius Werner <jwerner@chromium.org>2018-05-22 02:39:11 +0000
commit12574dd72b7b0e7e59ac1b071d581f78cd8f01ad (patch)
tree812cce3b7cee495f65524a60943561ec9a9bc8d5 /src/soc/intel/denverton_ns/bootblock/bootblock.c
parent1ca26664e60372cb66104b4c448a442a472f7b8a (diff)
downloadcoreboot-12574dd72b7b0e7e59ac1b071d581f78cd8f01ad.tar.gz
coreboot-12574dd72b7b0e7e59ac1b071d581f78cd8f01ad.tar.bz2
coreboot-12574dd72b7b0e7e59ac1b071d581f78cd8f01ad.zip
bootblock: Allow more timestamps in bootblock_main_with_timestamp()
This patch adds more parameters to bootblock_main_with_timestamp() to give callers the opportunity to add additional timestamps that were recorded in the platform-specific initialization phase. Change-Id: Idf3a0fcf5aee88a33747afc69e055b95bd38750c Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/26339 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/intel/denverton_ns/bootblock/bootblock.c')
-rw-r--r--src/soc/intel/denverton_ns/bootblock/bootblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/denverton_ns/bootblock/bootblock.c b/src/soc/intel/denverton_ns/bootblock/bootblock.c
index 6179bf7c218e..8b0c356aa01c 100644
--- a/src/soc/intel/denverton_ns/bootblock/bootblock.c
+++ b/src/soc/intel/denverton_ns/bootblock/bootblock.c
@@ -54,7 +54,7 @@ const FSPT_UPD temp_ram_init_params = {
asmlinkage void bootblock_c_entry(uint64_t base_timestamp)
{
/* Call lib/bootblock.c main */
- bootblock_main_with_timestamp(base_timestamp);
+ bootblock_main_with_timestamp(base_timestamp, NULL, 0);
};
void bootblock_soc_early_init(void)