diff options
author | Stefan Roese <sr@denx.de> | 2008-06-24 15:15:22 (GMT) |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-06-28 12:08:38 (GMT) |
commit | 93262af85e3e9d9974c6c08fbd37a9a72e090ca2 (patch) | |
tree | 905ef9627ffa0d70d459bc937dabaa8bd91960f4 /board/ml2 | |
parent | aac7a5095b968d6c9a3e6422f31b4ad203cac9c8 (diff) | |
download | u-boot-fsl-qoriq-93262af85e3e9d9974c6c08fbd37a9a72e090ca2.tar.xz |
ppc4xx: Fix compilation problems with phys_size_t
This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
board specific files where it has been missing.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/ml2')
-rw-r--r-- | board/ml2/serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/ml2/serial.c b/board/ml2/serial.c index 6593145..2e9ffa2 100644 --- a/board/ml2/serial.c +++ b/board/ml2/serial.c @@ -19,6 +19,7 @@ * */ +#include <asm/types.h> #include <asm/u-boot.h> #include <asm/processor.h> #include <common.h> |