diff options
author | wdenk <wdenk> | 2003-06-25 22:26:29 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-25 22:26:29 +0000 |
commit | b783edaee8252bfdba3f7b3fd29519a81ce71e42 (patch) | |
tree | 6993a909d2c21a3f07c51020edcc202a5697da91 /cpu | |
parent | a300d83cb8ad20b844e957587705675e9ac14147 (diff) | |
download | u-boot-imx-b783edaee8252bfdba3f7b3fd29519a81ce71e42.zip u-boot-imx-b783edaee8252bfdba3f7b3fd29519a81ce71e42.tar.gz u-boot-imx-b783edaee8252bfdba3f7b3fd29519a81ce71e42.tar.bz2 |
* Header file cleanup for ARM
* Patch by Murray Jensen, 24 Jun 2003:
- make sure to use only U-boot provided header files
- fix problems with ".rodata.str1.4" section as used by GCC-3.x
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/at91rm9200/cpu.c | 1 | ||||
-rw-r--r-- | cpu/at91rm9200/interrupts.c | 3 | ||||
-rw-r--r-- | cpu/at91rm9200/serial.c | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/cpu/at91rm9200/cpu.c b/cpu/at91rm9200/cpu.c index bccc75d..ad3cd13 100644 --- a/cpu/at91rm9200/cpu.c +++ b/cpu/at91rm9200/cpu.c @@ -33,6 +33,7 @@ #include <common.h> #include <command.h> #include <asm/io.h> +#include <asm/arch/hardware.h> /* read co-processor 15, register #1 (control register) */ static unsigned long read_p15_c1(void) diff --git a/cpu/at91rm9200/interrupts.c b/cpu/at91rm9200/interrupts.c index aa0d415..d9c7c55 100644 --- a/cpu/at91rm9200/interrupts.c +++ b/cpu/at91rm9200/interrupts.c @@ -32,7 +32,8 @@ #include <common.h> #include <asm/io.h> -#include <asm/proc-armv/ptrace.h> +#include <asm/arch/hardware.h> +#include <asm/proc/ptrace.h> extern void reset_cpu(ulong addr); diff --git a/cpu/at91rm9200/serial.c b/cpu/at91rm9200/serial.c index 5c5172e..f80fd43 100644 --- a/cpu/at91rm9200/serial.c +++ b/cpu/at91rm9200/serial.c @@ -31,6 +31,7 @@ #include <common.h> #include <asm/io.h> +#include <asm/arch/hardware.h> /* ggi thunder */ AT91PS_USART us = (AT91PS_USART) AT91C_BASE_DBGU; |