]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arc: Remove common.h usage
authorTom Rini <trini@konsulko.com>
Thu, 12 Oct 2023 23:03:55 +0000 (19:03 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 24 Oct 2023 20:34:45 +0000 (16:34 -0400)
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>
16 files changed:
arch/arc/lib/bootm.c
arch/arc/lib/cache.c
arch/arc/lib/cpu.c
arch/arc/lib/init_helpers.c
arch/arc/lib/interrupts.c
arch/arc/lib/relocate.c
arch/arc/lib/reset.c
board/abilis/tb100/tb100.c
board/synopsys/axs10x/axs10x.c
board/synopsys/emsdp/emsdp.c
board/synopsys/hsdk/clk-lib.h
board/synopsys/hsdk/env-lib.c
board/synopsys/hsdk/env-lib.h
board/synopsys/hsdk/hsdk.c
board/synopsys/iot_devkit/iot_devkit.c
board/synopsys/nsim/nsim.c

index 2dd003445f8fe39e597a87bbf481181a641af4da..44ec5864a1c6bbfdf342b1038523db2ec1836a38 100644 (file)
@@ -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>
index d97a5787424ef5d7e2c63fbccba7fd67ba03651c..22e748868a74ef61974a38e56dfbb48b2fb5f9b8 100644 (file)
@@ -4,7 +4,6 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <cpu_func.h>
 #include <asm/global_data.h>
 #include <linux/bitops.h>
index 156785796183c428e8d51556b5867972133a8ed6..803dfd425580e34087c7c8cae9da356b84b7082d 100644 (file)
@@ -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>
index 023eae190759938d6f64132003f7dd52049d6086..858b388cc0b99f4a5526aff9a7eb8289fd2508c0 100644 (file)
@@ -5,7 +5,6 @@
 
 #include <init.h>
 #include <asm/cache.h>
-#include <common.h>
 
 int init_cache_f_r(void)
 {
index db21fbb11428a2d9df8cd90308a8af4549855270..523b44cb95a42ffb7aed9c52da5d07b019cca7c8 100644 (file)
@@ -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>
 
index fd6f4fbc9304c326063ff143d18f02033ea5f5fa..95b6d5150c7871da779d38896d6b2e2e866c434f 100644 (file)
@@ -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>
index b8589d0f0a470b3fd98ca7389712842c31e5834f..fa60fa963381cda6ffb301ad1f1a90a4f4044069 100644 (file)
@@ -4,7 +4,6 @@
  */
 
 #include <command.h>
-#include <common.h>
 #include <cpu_func.h>
 
 __weak void reset_cpu(void)
index 89e73225a7df6bbd7a97d2b9428bcc2ed7e2853d..3dc9e14ef8c0e9a40cf2e69c3e71f2781d889e80 100644 (file)
@@ -3,7 +3,6 @@
  * (C) Copyright 2014 Pierrick Hascoet, Abilis Systems
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <net.h>
 #include <netdev.h>
index 75e4d037623e3133de722f3c786d1fe0125b96e1..95297a18357f70d256c2ddc23d81560aba5f94a5 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <dwmmc.h>
 #include <init.h>
index a3cee23411d0f720059b757bac3bea255ae551fe..adec7d32199410e07ab19546fa12d6f8390df5ee 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2018 Synopsys, Inc. All rights reserved.
  */
 
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
 #include <dwmmc.h>
index 970bcd4a17e7791e6fb52d2ad3c8ca130ec374ea..e1140a10b23aedde30b235ce360b684a4df26248 100644 (file)
@@ -7,7 +7,6 @@
 #ifndef __BOARD_CLK_LIB_H
 #define __BOARD_CLK_LIB_H
 
-#include <common.h>
 #include <linux/bitops.h>
 
 enum clk_ctl_ops {
index d85e8167332f6aa2a9e9762d763fb32e086f767d..85a2249f17f2498e8083b276bc1732fba785dcfb 100644 (file)
@@ -7,6 +7,8 @@
 #include "env-lib.h"
 #include <env.h>
 #include <log.h>
+#include <vsprintf.h>
+#include <linux/errno.h>
 #include <linux/printk.h>
 
 #define MAX_CMD_LEN    25
index 48c17c4d4f62f2939bcaa856c1c2e04f0bdf221a..cabca1d0f3d34f3854c5f862421b2b399828f16b 100644 (file)
@@ -7,7 +7,6 @@
 #ifndef __BOARD_ENV_LIB_H
 #define __BOARD_ENV_LIB_H
 
-#include <common.h>
 #include <config.h>
 #include <linux/kernel.h>
 
index 6cbc89ae787472dc497bc3982af06aea7ad933dd..8eb10f2226fccfca93cf6b26b3e257c704ee376f 100644 (file)
@@ -4,7 +4,6 @@
  * Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <config.h>
 #include <cpu_func.h>
index 650958f94c26b65bf2be886ab18fe2c9842e96cb..dec49e3ce5d6c51473e2d2177c157bc0b35ec424 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2018 Synopsys, Inc. All rights reserved.
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <init.h>
 #include <malloc.h>
index 00e5cc36414b15b341745c404f3e8f96ea95a31f..5953b365fd2060246d94f38191e0d8eaf37cb303 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2020 Synopsys, Inc. All rights reserved.
  */
 
-#include <common.h>
 #include <init.h>
 #include <dm/device.h>
 #include <virtio_types.h>