diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-30 07:35:33 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:06:33 -0600 |
commit | debd98265de384bb2ca2bfb169fb30ca175f2f69 (patch) | |
tree | 56880f0989ba3b4ad840deb2ee23a5fc0ae30b22 /board/sunxi | |
parent | e8df6eeb8db445c3440670e712a24dae0afdabce (diff) | |
download | u-boot-debd98265de384bb2ca2bfb169fb30ca175f2f69.tar.gz u-boot-debd98265de384bb2ca2bfb169fb30ca175f2f69.tar.bz2 u-boot-debd98265de384bb2ca2bfb169fb30ca175f2f69.zip |
arm: sunxi: Remove <common.h> and add needed includes
Remove <common.h> from all mach-sunxi and board/sunxi files and when
needed add missing include files directly.
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/sunxi')
-rw-r--r-- | board/sunxi/board.c | 1 | ||||
-rw-r--r-- | board/sunxi/chip.c | 1 | ||||
-rw-r--r-- | board/sunxi/dram_sun4i_auto.c | 1 | ||||
-rw-r--r-- | board/sunxi/dram_sun5i_auto.c | 1 | ||||
-rw-r--r-- | board/sunxi/gmac.c | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/board/sunxi/board.c b/board/sunxi/board.c index 1313b01dce..ed86f1df5d 100644 --- a/board/sunxi/board.c +++ b/board/sunxi/board.c @@ -10,7 +10,6 @@ * Some board init for the Allwinner A10-evb board. */ -#include <common.h> #include <clock_legacy.h> #include <dm.h> #include <env.h> diff --git a/board/sunxi/chip.c b/board/sunxi/chip.c index eeee6319e7..270af2506d 100644 --- a/board/sunxi/chip.c +++ b/board/sunxi/chip.c @@ -5,7 +5,6 @@ * Based on initial code from Maxime Ripard */ -#include <common.h> #include <malloc.h> #include <dm.h> #include <w1.h> diff --git a/board/sunxi/dram_sun4i_auto.c b/board/sunxi/dram_sun4i_auto.c index 547d1c0cb4..4b78919a5b 100644 --- a/board/sunxi/dram_sun4i_auto.c +++ b/board/sunxi/dram_sun4i_auto.c @@ -1,4 +1,3 @@ -#include <common.h> #include <init.h> #include <asm/arch/dram.h> diff --git a/board/sunxi/dram_sun5i_auto.c b/board/sunxi/dram_sun5i_auto.c index 517506ccc4..8976e3b16d 100644 --- a/board/sunxi/dram_sun5i_auto.c +++ b/board/sunxi/dram_sun5i_auto.c @@ -1,6 +1,5 @@ /* DRAM parameters for auto dram configuration on sun5i and sun7i */ -#include <common.h> #include <init.h> #include <asm/arch/dram.h> diff --git a/board/sunxi/gmac.c b/board/sunxi/gmac.c index 2a885305eb..710e821e3f 100644 --- a/board/sunxi/gmac.c +++ b/board/sunxi/gmac.c @@ -1,4 +1,3 @@ -#include <common.h> #include <netdev.h> #include <miiphy.h> #include <asm/io.h> |