]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
xtensa: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Sat, 27 Apr 2024 14:10:53 +0000 (08:10 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 May 2024 21:05:03 +0000 (15:05 -0600)
Remove <common.h> from all xtensa architecture files and when needed add
missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/xtensa/cpu/cpu.c
arch/xtensa/cpu/exceptions.c
arch/xtensa/lib/bootm.c
arch/xtensa/lib/cache.c
arch/xtensa/lib/time.c

index 98d9753b7e34be14e9de5d0e792d161b6c409683..abcd8f7984fac81e601e650b10e2a826b3654894 100644 (file)
@@ -8,7 +8,7 @@
  * CPU specific code
  */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <init.h>
 #include <vsprintf.h>
index cf9af4326a2952d82e218b02665d9747aa520e18..206767094e9f8895a142dda1bad2358f8588aa34 100644 (file)
  *  (Note that alloca is a special case and handled in start.S)
  */
 
-#include <common.h>
 #include <command.h>
 #include <irq_func.h>
 #include <asm/ptrace.h>
 #include <asm/string.h>
 #include <asm/regs.h>
+#include <vsprintf.h>
 
 typedef void (*handler_t)(struct pt_regs *);
 
index 9780d46e9b894268f79311872d79a058d9f72411..1de06b7fb53daaf3bb978957f633b441f72075d8 100644 (file)
@@ -4,7 +4,6 @@
  * (C) Copyright 2014 Cadence Design Systems Inc.
  */
 
-#include <common.h>
 #include <bootm.h>
 #include <bootstage.h>
 #include <command.h>
index 4e0c0acc3bbe3d3b41d8215c1f0cef146ec08c42..e6a7f6827fc2541fa6756f90191203e427ba1d94 100644 (file)
@@ -4,7 +4,6 @@
  * (C) Copyright 2014 - 2016 Cadence Design Systems Inc.
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <asm/cache.h>
 
index 1c927d2a6a3cdcdd3eac807a60064f4544dd37ba..c6739584bbf2b67967afd19e931f075d88633813 100644 (file)
@@ -3,7 +3,6 @@
  * (C) Copyright 2008 - 2013 Tensilica Inc.
  */
 
-#include <common.h>
 #include <clock_legacy.h>
 #include <time.h>
 #include <asm/global_data.h>