diff options
author | Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com> | 2007-09-13 16:04:05 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-09-15 21:03:09 +0200 |
commit | 314d5b6ce52a4ed19dd295d1364e246c5e605017 (patch) | |
tree | b2e003bc4dc7332b6f5576680485cd284fa1f16c /board | |
parent | e21659e30660a1377c42af135a6114efe39801d9 (diff) | |
download | u-boot-imx-314d5b6ce52a4ed19dd295d1364e246c5e605017.zip u-boot-imx-314d5b6ce52a4ed19dd295d1364e246c5e605017.tar.gz u-boot-imx-314d5b6ce52a4ed19dd295d1364e246c5e605017.tar.bz2 |
ColdFire: Fix build error caused by pixis.c
Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/common/pixis.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/freescale/common/pixis.c b/board/freescale/common/pixis.c index ae4bef1..fd99a93 100644 --- a/board/freescale/common/pixis.c +++ b/board/freescale/common/pixis.c @@ -25,10 +25,9 @@ #include <common.h> #include <command.h> #include <watchdog.h> -#include <asm/cache.h> #ifdef CONFIG_FSL_PIXIS - +#include <asm/cache.h> #include "pixis.h" |