summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/cannonlake/bootblock
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-18 06:58:42 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-26 21:11:31 +0000
commit101ef0b528461a3fb662db150b16607430a2bd94 (patch)
treeaa1ab0d8cba232e03d3f468728e8edc03e8e9c8c /src/soc/intel/cannonlake/bootblock
parentcd7a70f4879ff6e0f3e334ddf1031ccf0c0d31cf (diff)
downloadcoreboot-101ef0b528461a3fb662db150b16607430a2bd94.tar.gz
coreboot-101ef0b528461a3fb662db150b16607430a2bd94.tar.bz2
coreboot-101ef0b528461a3fb662db150b16607430a2bd94.zip
lib/bootblock: Add simplified entry with basetime
This allows for minor optimization as num_timestamps becomes a constant zero for a function with local scope. The loop with calls to timestamp_add() gets removed from bootblock. Change-Id: Id230075c0e76fe377b6ea8c8ddf8318e07d29b91 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34972 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/soc/intel/cannonlake/bootblock')
-rw-r--r--src/soc/intel/cannonlake/bootblock/bootblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/cannonlake/bootblock/bootblock.c b/src/soc/intel/cannonlake/bootblock/bootblock.c
index 30c2266096db..653ba30563ae 100644
--- a/src/soc/intel/cannonlake/bootblock/bootblock.c
+++ b/src/soc/intel/cannonlake/bootblock/bootblock.c
@@ -44,7 +44,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, NULL, 0);
+ bootblock_main_with_basetime(base_timestamp);
}
void bootblock_soc_early_init(void)