diff options
author | David Hendricks <dhendrix@chromium.org> | 2013-03-28 18:07:30 -0700 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-03-29 03:27:39 +0100 |
commit | fa244a6c09611833e78641604c96c1ea98b3bf6f (patch) | |
tree | 956eae3c68628355cb1c0a1bf4a9787047e4525a /src/arch | |
parent | eca48438fcac64d3b68f6028bcbe98b24547f033 (diff) | |
download | coreboot-fa244a6c09611833e78641604c96c1ea98b3bf6f.tar.xz |
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>
Reviewed-on: http://review.coreboot.org/2944
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/armv7/lib/cache.c | 2 | ||||
-rw-r--r-- | 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 7bb337dd41..8709daf1ee 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 34a484f300..d55d4bd681 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> |