diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:39:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 17:33:33 -0400 |
commit | e6f6f9e64882ddf242437c73fdd9ff06a8eb7c21 (patch) | |
tree | 201c26b1dd27d7e77a667e16497a1d87da09099b /disk | |
parent | 0528979fa7ab7853faaf2ecf34b7721dd4c0b383 (diff) |
common: Drop part.h from common header
Move this uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/part.c | 1 | ||||
-rw-r--r-- | disk/part_amiga.c | 1 | ||||
-rw-r--r-- | disk/part_dos.c | 2 | ||||
-rw-r--r-- | disk/part_efi.c | 4 | ||||
-rw-r--r-- | disk/part_iso.c | 2 | ||||
-rw-r--r-- | disk/part_mac.c | 1 |
6 files changed, 10 insertions, 1 deletions
diff --git a/disk/part.c b/disk/part.c index 68cba61c5a..bb0f6e2046 100644 --- a/disk/part.c +++ b/disk/part.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <blk.h> #include <command.h> #include <env.h> #include <errno.h> diff --git a/disk/part_amiga.c b/disk/part_amiga.c index 5a17d11b9b..7eea60b564 100644 --- a/disk/part_amiga.c +++ b/disk/part_amiga.c @@ -9,6 +9,7 @@ #include <env.h> #include <ide.h> #include "part_amiga.h" +#include <part.h> #ifdef CONFIG_HAVE_BLOCK_DEVICE diff --git a/disk/part_dos.c b/disk/part_dos.c index 6e2a11090c..04f53106f7 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -14,10 +14,12 @@ */ #include <common.h> +#include <blk.h> #include <command.h> #include <ide.h> #include <memalign.h> #include "part_dos.h" +#include <part.h> #ifdef CONFIG_HAVE_BLOCK_DEVICE diff --git a/disk/part_efi.c b/disk/part_efi.c index 6b206ddb4f..72bfb4b609 100644 --- a/disk/part_efi.c +++ b/disk/part_efi.c @@ -9,10 +9,12 @@ * when CONFIG_SYS_64BIT_LBA is not defined, lbaint_t is 32 bits; this * limits the maximum size of addressable storage to < 2 Terra Bytes */ +#include <common.h> +#include <blk.h> +#include <part.h> #include <uuid.h> #include <asm/cache.h> #include <asm/unaligned.h> -#include <common.h> #include <command.h> #include <fdtdec.h> #include <ide.h> diff --git a/disk/part_iso.c b/disk/part_iso.c index 2ccb7867c9..822f2c4d9f 100644 --- a/disk/part_iso.c +++ b/disk/part_iso.c @@ -5,7 +5,9 @@ */ #include <common.h> +#include <blk.h> #include <command.h> +#include <part.h> #include <asm/cache.h> #include <asm/unaligned.h> #include "part_iso.h" diff --git a/disk/part_mac.c b/disk/part_mac.c index fbd0ad73e3..cda497e04a 100644 --- a/disk/part_mac.c +++ b/disk/part_mac.c @@ -17,6 +17,7 @@ #include <memalign.h> #include <ide.h> #include "part_mac.h" +#include <part.h> #ifdef CONFIG_HAVE_BLOCK_DEVICE |