diff options
author | Terry Lv <r65388@freescale.com> | 2010-03-05 15:15:57 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2010-03-05 15:18:31 +0800 |
commit | 19423c03deba5d92a4a9d84ffabfcd359dd8d2c8 (patch) | |
tree | 57ec4d3b98417ba82001030bc5f50659b8757896 | |
parent | cdfb31a14c8d7f17af7640abcba88b856c2388b9 (diff) | |
download | u-boot-imx-19423c03deba5d92a4a9d84ffabfcd359dd8d2c8.zip u-boot-imx-19423c03deba5d92a4a9d84ffabfcd359dd8d2c8.tar.gz u-boot-imx-19423c03deba5d92a4a9d84ffabfcd359dd8d2c8.tar.bz2 |
ENGR00121314: Fix mx23 and mx28 u-boot build error
mx23 and mx28 u-boot build fails.
The reason is that cache-cp15.c is changed to cache-cp15.h.
Signed-off-by: Terry Lv <r65388@freescale.com>
-rw-r--r-- | cpu/arm926ejs/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/arm926ejs/cpu.c b/cpu/arm926ejs/cpu.c index 5c902df..7f2dbd4 100644 --- a/cpu/arm926ejs/cpu.c +++ b/cpu/arm926ejs/cpu.c @@ -32,6 +32,7 @@ #include <common.h> #include <command.h> #include <asm/system.h> +#include <asm/cache-cp15.h> static void cache_flush(void); |