diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2010-04-12 22:28:07 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-04-13 09:13:04 +0200 |
commit | 61f2b38a17f5b21c59f2afe6cf1cbb5f28638cf9 (patch) | |
tree | 1e9ace3a9e030f0fd07fbbca663c148c195f0a3d /nand_spl | |
parent | 0de71d507157c4bd4fddcd3a419140d2b986eed2 (diff) | |
download | u-boot-imx-61f2b38a17f5b21c59f2afe6cf1cbb5f28638cf9.zip u-boot-imx-61f2b38a17f5b21c59f2afe6cf1cbb5f28638cf9.tar.gz u-boot-imx-61f2b38a17f5b21c59f2afe6cf1cbb5f28638cf9.tar.bz2 |
Replace "#include <asm-$ARCH/$FILE>" with "#include <asm/$FILE>"
The appropriate include/asm-$ARCH directory should already by symlinked
to include/asm so using the whole "asm-$ARCH" path is unnecessary.
This change should also allow us to move the include/asm-$ARCH
directories into their appropriate lib/$ARCH/ directories.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'nand_spl')
-rw-r--r-- | nand_spl/board/freescale/mpc8569mds/nand_boot.c | 2 | ||||
-rw-r--r-- | nand_spl/board/freescale/p1_p2_rdb/nand_boot.c | 2 | ||||
-rw-r--r-- | nand_spl/nand_boot_fsl_nfc.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/nand_spl/board/freescale/mpc8569mds/nand_boot.c b/nand_spl/board/freescale/mpc8569mds/nand_boot.c index e030656..047da34 100644 --- a/nand_spl/board/freescale/mpc8569mds/nand_boot.c +++ b/nand_spl/board/freescale/mpc8569mds/nand_boot.c @@ -20,7 +20,7 @@ */ #include <common.h> #include <mpc85xx.h> -#include <asm-ppc/io.h> +#include <asm/io.h> #include <ns16550.h> #include <nand.h> #include <asm/mmu.h> diff --git a/nand_spl/board/freescale/p1_p2_rdb/nand_boot.c b/nand_spl/board/freescale/p1_p2_rdb/nand_boot.c index af442ea..16a756c 100644 --- a/nand_spl/board/freescale/p1_p2_rdb/nand_boot.c +++ b/nand_spl/board/freescale/p1_p2_rdb/nand_boot.c @@ -20,7 +20,7 @@ */ #include <common.h> #include <mpc85xx.h> -#include <asm-ppc/io.h> +#include <asm/io.h> #include <ns16550.h> #include <nand.h> #include <asm/mmu.h> diff --git a/nand_spl/nand_boot_fsl_nfc.c b/nand_spl/nand_boot_fsl_nfc.c index f4040a7..bfae30e 100644 --- a/nand_spl/nand_boot_fsl_nfc.c +++ b/nand_spl/nand_boot_fsl_nfc.c @@ -27,9 +27,9 @@ #include <common.h> #include <nand.h> #ifdef CONFIG_MX31 -#include <asm-arm/arch/mx31-regs.h> +#include <asm/arch/mx31-regs.h> #else -#include <asm-arm/arch/imx-regs.h> +#include <asm/arch/imx-regs.h> #endif #include <asm/io.h> #include <fsl_nfc.h> |