Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1720
-gerrit
commit 2835b8f21540e74eb0ec1ba0a6a3c171c5ff3509 Author: Gabe Black gabeblack@google.com Date: Tue Apr 17 15:35:00 2012 -0700
Include stdint.h in libpayload's rdtsc.h.
This file uses uint*_t types but hadn't included stdint.h itself.
Change-Id: Ib883f62951bae1ece5134c6bd0f4799a80740e8e Signed-off-by: Gabe Black gabeblack@google.com --- payloads/libpayload/include/i386/arch/rdtsc.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/payloads/libpayload/include/i386/arch/rdtsc.h b/payloads/libpayload/include/i386/arch/rdtsc.h index 52f8c9c..ef23e0e 100644 --- a/payloads/libpayload/include/i386/arch/rdtsc.h +++ b/payloads/libpayload/include/i386/arch/rdtsc.h @@ -30,6 +30,8 @@ #ifndef _ARCH_RDTSC_H #define _ARCH_RDTSC_H
+#include <stdint.h> + static u64 rdtsc(void) { u64 val;