David Hendricks (dhendrix@chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2944
-gerrit
commit dbbb10664f0657c045c971ced22b322328e3eee8 Author: David Hendricks dhendrix@chromium.org Date: Thu Mar 28 18:07:30 2013 -0700
armv7: use stdint.h in cache and MMU files
This makes it easier to copy + paste code into libpayload since libpayload since both coreboot and libpayload have stdint.h and it defines the types needed.
Change-Id: Ifa55f04a9bdddd17bc1a2679321a6744c75f25a8 Signed-off-by: David Hendricks dhendrix@chromium.org --- src/arch/armv7/lib/cache.c | 2 +- src/arch/armv7/lib/mmu.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/arch/armv7/lib/cache.c b/src/arch/armv7/lib/cache.c index 7bb337d..8709daf 100644 --- a/src/arch/armv7/lib/cache.c +++ b/src/arch/armv7/lib/cache.c @@ -31,7 +31,7 @@ * Reference: ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition */
-#include <types.h> +#include <stdint.h>
#include <arch/cache.h>
diff --git a/src/arch/armv7/lib/mmu.c b/src/arch/armv7/lib/mmu.c index 34a484f..d55d4bd 100644 --- a/src/arch/armv7/lib/mmu.c +++ b/src/arch/armv7/lib/mmu.c @@ -28,7 +28,7 @@ */
#include <stdlib.h> -#include <types.h> +#include <stdint.h>
#include <cbmem.h> #include <console/console.h>