diff options
author | Olav Morken <olavmrk@gmail.com> | 2009-01-23 12:56:28 +0100 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2009-02-23 10:34:24 +0100 |
commit | a38de083d2979db3680f0d0978c509a172c8fa00 (patch) | |
tree | b23c243d2d3b350360be81bb63cd62900a770f29 /lib_avr32 | |
parent | d8f2aa3298610b44127dbc4796d8038aa5847e0b (diff) | |
download | u-boot-a38de083d2979db3680f0d0978c509a172c8fa00.tar.gz u-boot-a38de083d2979db3680f0d0978c509a172c8fa00.tar.xz u-boot-a38de083d2979db3680f0d0978c509a172c8fa00.zip |
AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
The AVR32A architecture (which AT32UC3A-series is based on) has a
different memory layout than the AVR32B-architecture. This patch moves
addrspace.h to an arch-dependent directory in preparation for
AT32UC3A-support. It also moves some address-space manipulation
functions from io.h to addrspace.h.
Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
Signed-off-by: Olav Morken <olavmrk@gmail.com>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'lib_avr32')
-rw-r--r-- | lib_avr32/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_avr32/bootm.c b/lib_avr32/bootm.c index 03ab8d1fa3..0ca4718c88 100644 --- a/lib_avr32/bootm.c +++ b/lib_avr32/bootm.c @@ -24,7 +24,7 @@ #include <image.h> #include <zlib.h> #include <asm/byteorder.h> -#include <asm/addrspace.h> +#include <asm/arch/addrspace.h> #include <asm/io.h> #include <asm/setup.h> #include <asm/arch/clk.h> |