diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-07-11 09:22:02 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-15 02:26:52 +0000 |
commit | b56224408ef6ff152ba1544ea6c38cad26576c97 (patch) | |
tree | a3c3d7c6a6c7f9322f18726fe40b608c23042494 /src/lib | |
parent | 9fe5dde68d8f07a1f78785f48fc39e6acdc98e6b (diff) |
src: Use '#include <timestamp.h>' when needed
Change-Id: Ic0483982e8115ae99367d08d8ed77b8a316f5405
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34231
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/bootblock.c | 1 | ||||
-rw-r--r-- | src/lib/decompressor.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/bootblock.c b/src/lib/bootblock.c index c28a67aceb..3925e90afe 100644 --- a/src/lib/bootblock.c +++ b/src/lib/bootblock.c @@ -21,6 +21,7 @@ #include <pc80/mc146818rtc.h> #include <program_loading.h> #include <symbols.h> +#include <timestamp.h> DECLARE_OPTIONAL_REGION(timestamp); diff --git a/src/lib/decompressor.c b/src/lib/decompressor.c index 0529d11390..eb7f16cd88 100644 --- a/src/lib/decompressor.c +++ b/src/lib/decompressor.c @@ -19,6 +19,7 @@ #include <delay.h> #include <program_loading.h> #include <symbols.h> +#include <timestamp.h> extern u8 compressed_bootblock[]; asm ( |