aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-09-27 08:51:11 +0000
committerStefan Reinauer <stepan@openbios.org>2008-09-27 08:51:11 +0000
commit830b17d3e38806b7977bda7df59775a301ca4584 (patch)
tree872e2efd2a70c3b5093a5b37d35f98a2801912d7
parentc753926a01d94815e10480ddd3abb5c80ccbc923 (diff)
fix ppc mainboards (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3612 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/arch/ppc/include/stdint.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/ppc/include/stdint.h b/src/arch/ppc/include/stdint.h
index 73da924b1e..5e4921caf0 100644
--- a/src/arch/ppc/include/stdint.h
+++ b/src/arch/ppc/include/stdint.h
@@ -48,5 +48,8 @@ typedef unsigned int uintptr_t;
typedef long long int intmax_t;
typedef unsigned long long uintmax_t;
+typedef uint8_t u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
#endif /* PPC_STDINT_H */