aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-10-02 12:10:20 +0200
committerMartin Roth <martin.roth@amd.corp-partner.google.com>2022-10-06 16:59:32 +0000
commit6f0531cc3ae840029d6d3cec85a70c85c7dd40a8 (patch)
tree32d87f1134ddd1ae732810679060a7fbcb1e454b /src/arch
parentf0b28d8d8964fd03706269818d14c58edfdef068 (diff)
arch/x86/timestamp.c: Add missing <stdint.h>
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I6870fb9f3d41ef5dc6599e979ce0c890a1e145ab Reviewed-on: https://review.coreboot.org/c/coreboot/+/68034 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/timestamp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/timestamp.c b/src/arch/x86/timestamp.c
index 8ab10ed817..0a4c9c4ec9 100644
--- a/src/arch/x86/timestamp.c
+++ b/src/arch/x86/timestamp.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <cpu/x86/tsc.h>
+#include <stdint.h>
#include <timestamp.h>
uint64_t timestamp_get(void)