diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-05-15 23:47:13 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-06-12 20:39:49 +0200 |
commit | 2907798926ee932f453ac8538e7a6c05c18428a5 (patch) | |
tree | 1c996fec933b3566b1cdcf42592269e604960167 /cpu | |
parent | 269dfea017b09c5a999d3053d00505c19789c350 (diff) | |
download | u-boot-2907798926ee932f453ac8538e7a6c05c18428a5.tar.gz u-boot-2907798926ee932f453ac8538e7a6c05c18428a5.tar.xz u-boot-2907798926ee932f453ac8538e7a6c05c18428a5.zip |
arm920/926/926: remove non needed header
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm920t/cpu.c | 1 | ||||
-rw-r--r-- | cpu/arm920t/imx/timer.c | 1 | ||||
-rw-r--r-- | cpu/arm920t/interrupts.c | 1 | ||||
-rw-r--r-- | cpu/arm920t/s3c24x0/timer.c | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/cpu.c | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/davinci/timer.c | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/nomadik/timer.c | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/omap/cpuinfo.c | 1 | ||||
-rw-r--r-- | cpu/arm926ejs/omap/timer.c | 1 | ||||
-rwxr-xr-x | cpu/arm926ejs/versatile/timer.c | 1 | ||||
-rw-r--r-- | cpu/arm946es/cpu.c | 1 | ||||
-rw-r--r-- | cpu/lh7a40x/cpu.c | 1 | ||||
-rw-r--r-- | cpu/lh7a40x/timer.c | 1 |
13 files changed, 0 insertions, 13 deletions
diff --git a/cpu/arm920t/cpu.c b/cpu/arm920t/cpu.c index 0c080fe3e4..b6ef6bb8f5 100644 --- a/cpu/arm920t/cpu.c +++ b/cpu/arm920t/cpu.c @@ -31,7 +31,6 @@ #include <common.h> #include <command.h> -#include <arm920t.h> #include <asm/system.h> #ifdef CONFIG_USE_IRQ diff --git a/cpu/arm920t/imx/timer.c b/cpu/arm920t/imx/timer.c index 280c682940..31ec588d91 100644 --- a/cpu/arm920t/imx/timer.c +++ b/cpu/arm920t/imx/timer.c @@ -32,7 +32,6 @@ #include <common.h> #if defined (CONFIG_IMX) -#include <arm920t.h> #include <asm/arch/imx-regs.h> int timer_init (void) diff --git a/cpu/arm920t/interrupts.c b/cpu/arm920t/interrupts.c index 1fbd1f0cc4..ea24cdf68b 100644 --- a/cpu/arm920t/interrupts.c +++ b/cpu/arm920t/interrupts.c @@ -30,7 +30,6 @@ */ #include <common.h> -#include <arm920t.h> #ifdef CONFIG_USE_IRQ #include <asm/proc-armv/ptrace.h> diff --git a/cpu/arm920t/s3c24x0/timer.c b/cpu/arm920t/s3c24x0/timer.c index f3c0ed62cc..f0a09cddff 100644 --- a/cpu/arm920t/s3c24x0/timer.c +++ b/cpu/arm920t/s3c24x0/timer.c @@ -32,7 +32,6 @@ #include <common.h> #if defined(CONFIG_S3C2400) || defined (CONFIG_S3C2410) || defined (CONFIG_TRAB) -#include <arm920t.h> #if defined(CONFIG_S3C2400) #include <s3c2400.h> #elif defined(CONFIG_S3C2410) diff --git a/cpu/arm926ejs/cpu.c b/cpu/arm926ejs/cpu.c index 518c5e0b3f..1f70a3603a 100644 --- a/cpu/arm926ejs/cpu.c +++ b/cpu/arm926ejs/cpu.c @@ -31,7 +31,6 @@ #include <common.h> #include <command.h> -#include <arm926ejs.h> #include <asm/system.h> #ifdef CONFIG_USE_IRQ diff --git a/cpu/arm926ejs/davinci/timer.c b/cpu/arm926ejs/davinci/timer.c index 2604d57f32..80751add84 100644 --- a/cpu/arm926ejs/davinci/timer.c +++ b/cpu/arm926ejs/davinci/timer.c @@ -38,7 +38,6 @@ */ #include <common.h> -#include <arm926ejs.h> typedef volatile struct { u_int32_t pid12; diff --git a/cpu/arm926ejs/nomadik/timer.c b/cpu/arm926ejs/nomadik/timer.c index 960cf52dfb..2870d24ad5 100644 --- a/cpu/arm926ejs/nomadik/timer.c +++ b/cpu/arm926ejs/nomadik/timer.c @@ -37,7 +37,6 @@ #include <common.h> #include <asm/io.h> -#include <arm926ejs.h> #define TIMER_LOAD_VAL 0xffffffff diff --git a/cpu/arm926ejs/omap/cpuinfo.c b/cpu/arm926ejs/omap/cpuinfo.c index 35ba7dba0f..0052daba8e 100644 --- a/cpu/arm926ejs/omap/cpuinfo.c +++ b/cpu/arm926ejs/omap/cpuinfo.c @@ -11,7 +11,6 @@ #include <common.h> #include <command.h> -#include <arm926ejs.h> #if defined(CONFIG_DISPLAY_CPUINFO) && defined(CONFIG_OMAP) diff --git a/cpu/arm926ejs/omap/timer.c b/cpu/arm926ejs/omap/timer.c index 97f97712f4..392b158d50 100644 --- a/cpu/arm926ejs/omap/timer.c +++ b/cpu/arm926ejs/omap/timer.c @@ -36,7 +36,6 @@ */ #include <common.h> -#include <arm926ejs.h> #define TIMER_LOAD_VAL 0xffffffff diff --git a/cpu/arm926ejs/versatile/timer.c b/cpu/arm926ejs/versatile/timer.c index 6697672574..50c13350a0 100755 --- a/cpu/arm926ejs/versatile/timer.c +++ b/cpu/arm926ejs/versatile/timer.c @@ -36,7 +36,6 @@ */ #include <common.h> -#include <arm926ejs.h> #define TIMER_LOAD_VAL 0xffffffff diff --git a/cpu/arm946es/cpu.c b/cpu/arm946es/cpu.c index 04f051510d..d3195f9a22 100644 --- a/cpu/arm946es/cpu.c +++ b/cpu/arm946es/cpu.c @@ -31,7 +31,6 @@ #include <common.h> #include <command.h> -#include <arm946es.h> #include <asm/system.h> #ifdef CONFIG_USE_IRQ diff --git a/cpu/lh7a40x/cpu.c b/cpu/lh7a40x/cpu.c index 338df8769e..be92f708b9 100644 --- a/cpu/lh7a40x/cpu.c +++ b/cpu/lh7a40x/cpu.c @@ -31,7 +31,6 @@ #include <common.h> #include <command.h> -#include <arm920t.h> #include <asm/system.h> #ifdef CONFIG_USE_IRQ diff --git a/cpu/lh7a40x/timer.c b/cpu/lh7a40x/timer.c index f0baf14737..f9b5be0104 100644 --- a/cpu/lh7a40x/timer.c +++ b/cpu/lh7a40x/timer.c @@ -30,7 +30,6 @@ */ #include <common.h> -#include <arm920t.h> #include <lh7a40x.h> static ulong timer_load_val = 0; |