diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:11:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:04 -0600 |
commit | c93cc8ed4166e0486d5c09d952695662708cd72c (patch) | |
tree | 763b2bbfaab08de6bf2671e8ee815c15f8bcfc37 /disk | |
parent | a79fc7a79cc9d4f7a46b19a4891484ac1e9ef599 (diff) | |
download | u-boot-c93cc8ed4166e0486d5c09d952695662708cd72c.tar.gz u-boot-c93cc8ed4166e0486d5c09d952695662708cd72c.tar.bz2 u-boot-c93cc8ed4166e0486d5c09d952695662708cd72c.zip |
part: Remove <common.h> and add needed includes
Remove <common.h> from all "part/" files and when needed add
missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/disk-uclass.c | 1 | ||||
-rw-r--r-- | disk/part.c | 1 | ||||
-rw-r--r-- | disk/part_amiga.c | 2 | ||||
-rw-r--r-- | disk/part_dos.c | 2 | ||||
-rw-r--r-- | disk/part_efi.c | 1 | ||||
-rw-r--r-- | disk/part_iso.c | 1 | ||||
-rw-r--r-- | disk/part_mac.c | 1 |
7 files changed, 2 insertions, 7 deletions
diff --git a/disk/disk-uclass.c b/disk/disk-uclass.c index efe4bf1f94..ee3cc4407d 100644 --- a/disk/disk-uclass.c +++ b/disk/disk-uclass.c @@ -8,7 +8,6 @@ #define LOG_CATEGORY UCLASS_PARTITION -#include <common.h> #include <blk.h> #include <dm.h> #include <log.h> diff --git a/disk/part.c b/disk/part.c index 2bee669582..bc932526f9 100644 --- a/disk/part.c +++ b/disk/part.c @@ -4,7 +4,6 @@ * Wolfgang Denk, DENX Software Engineering, wd@denx.de. */ -#include <common.h> #include <blk.h> #include <command.h> #include <env.h> diff --git a/disk/part_amiga.c b/disk/part_amiga.c index 65e30fea55..9b0f2fe749 100644 --- a/disk/part_amiga.c +++ b/disk/part_amiga.c @@ -4,12 +4,12 @@ * Hans-Joerg Frieden, Hyperion Entertainment * Hans-JoergF@hyperion-entertainment.com */ -#include <common.h> #include <command.h> #include <env.h> #include <ide.h> #include "part_amiga.h" #include <part.h> +#include <vsprintf.h> #undef AMIGA_DEBUG diff --git a/disk/part_dos.c b/disk/part_dos.c index 567ead7511..e6b5295e0e 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -13,11 +13,11 @@ * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92 */ -#include <common.h> #include <blk.h> #include <command.h> #include <ide.h> #include <memalign.h> +#include <vsprintf.h> #include <asm/unaligned.h> #include <linux/compiler.h> #include "part_dos.h" diff --git a/disk/part_efi.c b/disk/part_efi.c index 4ce9243ef2..b1a03bd165 100644 --- a/disk/part_efi.c +++ b/disk/part_efi.c @@ -12,7 +12,6 @@ #define LOG_CATEGORY LOGC_FS -#include <common.h> #include <blk.h> #include <log.h> #include <part.h> diff --git a/disk/part_iso.c b/disk/part_iso.c index 6ac6d95be9..6e05b2feff 100644 --- a/disk/part_iso.c +++ b/disk/part_iso.c @@ -4,7 +4,6 @@ * Denis Peter, MPL AG Switzerland, d.peter@mpl.ch. */ -#include <common.h> #include <blk.h> #include <command.h> #include <part.h> diff --git a/disk/part_mac.c b/disk/part_mac.c index db5e203be5..81a65823be 100644 --- a/disk/part_mac.c +++ b/disk/part_mac.c @@ -12,7 +12,6 @@ * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92 */ -#include <common.h> #include <command.h> #include <log.h> #include <memalign.h> |