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 /board/netstal | |
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 'board/netstal')
-rw-r--r-- | board/netstal/hcu4/hcu4.c | 2 | ||||
-rw-r--r-- | board/netstal/mcu25/mcu25.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/netstal/hcu4/hcu4.c b/board/netstal/hcu4/hcu4.c index 3f07ff1..1c99405 100644 --- a/board/netstal/hcu4/hcu4.c +++ b/board/netstal/hcu4/hcu4.c @@ -22,7 +22,7 @@ #include <ppc4xx.h> #include <asm/processor.h> #include <asm/io.h> -#include <asm-ppc/u-boot.h> +#include <asm/u-boot.h> #include "../common/nm.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/netstal/mcu25/mcu25.c b/board/netstal/mcu25/mcu25.c index cc2f998..87bc45ed 100644 --- a/board/netstal/mcu25/mcu25.c +++ b/board/netstal/mcu25/mcu25.c @@ -22,7 +22,7 @@ #include <ppc4xx.h> #include <asm/processor.h> #include <asm/io.h> -#include <asm-ppc/u-boot.h> +#include <asm/u-boot.h> #include "../common/nm.h" DECLARE_GLOBAL_DATA_PTR; |