diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-12 19:03:55 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-24 16:34:45 -0400 |
commit | 60c08dd7718364e3ab4565801e7d972aec2ee036 (patch) | |
tree | 0d0c9f7e12d73697d76cfcac686a240045273bbf /arch | |
parent | 12c00f9e8b3e7987cfc5243f5b3edbe6c9fdfdc2 (diff) | |
download | u-boot-60c08dd7718364e3ab4565801e7d972aec2ee036.zip u-boot-60c08dd7718364e3ab4565801e7d972aec2ee036.tar.gz u-boot-60c08dd7718364e3ab4565801e7d972aec2ee036.tar.bz2 |
arc: Remove common.h usage
We can remove common.h from most cases of the code here, and only a few
places need an additional header instead.
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arc/lib/bootm.c | 1 | ||||
-rw-r--r-- | arch/arc/lib/cache.c | 1 | ||||
-rw-r--r-- | arch/arc/lib/cpu.c | 1 | ||||
-rw-r--r-- | arch/arc/lib/init_helpers.c | 1 | ||||
-rw-r--r-- | arch/arc/lib/interrupts.c | 2 | ||||
-rw-r--r-- | arch/arc/lib/relocate.c | 1 | ||||
-rw-r--r-- | arch/arc/lib/reset.c | 1 |
7 files changed, 1 insertions, 7 deletions
diff --git a/arch/arc/lib/bootm.c b/arch/arc/lib/bootm.c index 2dd0034..44ec586 100644 --- a/arch/arc/lib/bootm.c +++ b/arch/arc/lib/bootm.c @@ -3,7 +3,6 @@ * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. */ -#include <common.h> #include <bootstage.h> #include <env.h> #include <image.h> diff --git a/arch/arc/lib/cache.c b/arch/arc/lib/cache.c index d97a578..22e7488 100644 --- a/arch/arc/lib/cache.c +++ b/arch/arc/lib/cache.c @@ -4,7 +4,6 @@ */ #include <config.h> -#include <common.h> #include <cpu_func.h> #include <asm/global_data.h> #include <linux/bitops.h> diff --git a/arch/arc/lib/cpu.c b/arch/arc/lib/cpu.c index 1567857..803dfd4 100644 --- a/arch/arc/lib/cpu.c +++ b/arch/arc/lib/cpu.c @@ -3,7 +3,6 @@ * Copyright (C) 2013-2014, 2018 Synopsys, Inc. All rights reserved. */ -#include <common.h> #include <clock_legacy.h> #include <init.h> #include <malloc.h> diff --git a/arch/arc/lib/init_helpers.c b/arch/arc/lib/init_helpers.c index 023eae1..858b388 100644 --- a/arch/arc/lib/init_helpers.c +++ b/arch/arc/lib/init_helpers.c @@ -5,7 +5,6 @@ #include <init.h> #include <asm/cache.h> -#include <common.h> int init_cache_f_r(void) { diff --git a/arch/arc/lib/interrupts.c b/arch/arc/lib/interrupts.c index db21fbb..523b44c 100644 --- a/arch/arc/lib/interrupts.c +++ b/arch/arc/lib/interrupts.c @@ -3,8 +3,8 @@ * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. */ -#include <common.h> #include <irq_func.h> +#include <vsprintf.h> #include <asm/arcregs.h> #include <asm/ptrace.h> diff --git a/arch/arc/lib/relocate.c b/arch/arc/lib/relocate.c index fd6f4fb..95b6d51 100644 --- a/arch/arc/lib/relocate.c +++ b/arch/arc/lib/relocate.c @@ -3,7 +3,6 @@ * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. */ -#include <common.h> #include <elf.h> #include <log.h> #include <asm/sections.h> diff --git a/arch/arc/lib/reset.c b/arch/arc/lib/reset.c index b8589d0..fa60fa9 100644 --- a/arch/arc/lib/reset.c +++ b/arch/arc/lib/reset.c @@ -4,7 +4,6 @@ */ #include <command.h> -#include <common.h> #include <cpu_func.h> __weak void reset_cpu(void) |