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 /fs | |
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 'fs')
-rw-r--r-- | fs/btrfs/dev.c | 1 | ||||
-rw-r--r-- | fs/btrfs/super.c | 4 | ||||
-rw-r--r-- | fs/ext4/ext4_common.c | 2 | ||||
-rw-r--r-- | fs/ext4/ext4_journal.c | 1 | ||||
-rw-r--r-- | fs/ext4/ext4_write.c | 2 | ||||
-rw-r--r-- | fs/ext4/ext4fs.c | 2 | ||||
-rw-r--r-- | fs/fs.c | 1 | ||||
-rw-r--r-- | fs/fs_internal.c | 1 | ||||
-rw-r--r-- | fs/sandbox/sandboxfs.c | 1 | ||||
-rw-r--r-- | fs/ubifs/ubifs.c | 1 |
10 files changed, 15 insertions, 1 deletions
diff --git a/fs/btrfs/dev.c b/fs/btrfs/dev.c index e686abc5e3..1e5b83235a 100644 --- a/fs/btrfs/dev.c +++ b/fs/btrfs/dev.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <blk.h> #include <compiler.h> #include <fs_internal.h> diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index b693a073fc..f80c148627 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -5,9 +5,11 @@ * 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz */ -#include "btrfs.h" +#include <common.h> #include <memalign.h> +#include <part.h> #include <linux/compat.h> +#include "btrfs.h" #define BTRFS_SUPER_FLAG_SUPP (BTRFS_HEADER_FLAG_WRITTEN \ | BTRFS_HEADER_FLAG_RELOC \ diff --git a/fs/ext4/ext4_common.c b/fs/ext4/ext4_common.c index 5bf78b530a..9adef57476 100644 --- a/fs/ext4/ext4_common.c +++ b/fs/ext4/ext4_common.c @@ -19,10 +19,12 @@ */ #include <common.h> +#include <blk.h> #include <ext_common.h> #include <ext4fs.h> #include <malloc.h> #include <memalign.h> +#include <part.h> #include <stddef.h> #include <linux/stat.h> #include <linux/time.h> diff --git a/fs/ext4/ext4_journal.c b/fs/ext4/ext4_journal.c index 0ceb73d9c9..2a8d397af4 100644 --- a/fs/ext4/ext4_journal.c +++ b/fs/ext4/ext4_journal.c @@ -14,6 +14,7 @@ */ #include <common.h> +#include <blk.h> #include <ext4fs.h> #include <malloc.h> #include <ext_common.h> diff --git a/fs/ext4/ext4_write.c b/fs/ext4/ext4_write.c index 67aeba1339..ce1fddc9a4 100644 --- a/fs/ext4/ext4_write.c +++ b/fs/ext4/ext4_write.c @@ -22,8 +22,10 @@ #include <common.h> +#include <blk.h> #include <malloc.h> #include <memalign.h> +#include <part.h> #include <linux/stat.h> #include <div64.h> #include "ext4_common.h" diff --git a/fs/ext4/ext4fs.c b/fs/ext4/ext4fs.c index ad71f5ab6e..4c89152ce4 100644 --- a/fs/ext4/ext4fs.c +++ b/fs/ext4/ext4fs.c @@ -21,11 +21,13 @@ */ #include <common.h> +#include <blk.h> #include <ext_common.h> #include <ext4fs.h> #include "ext4_common.h" #include <div64.h> #include <malloc.h> +#include <part.h> #include <uuid.h> int ext4fs_symlinknest; @@ -7,6 +7,7 @@ #include <errno.h> #include <common.h> #include <env.h> +#include <lmb.h> #include <mapmem.h> #include <part.h> #include <ext4fs.h> diff --git a/fs/fs_internal.c b/fs/fs_internal.c index 1ff804d13b..115c010ef8 100644 --- a/fs/fs_internal.c +++ b/fs/fs_internal.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <blk.h> #include <compiler.h> #include <part.h> #include <memalign.h> diff --git a/fs/sandbox/sandboxfs.c b/fs/sandbox/sandboxfs.c index 5851fe2434..4ae41d5b4d 100644 --- a/fs/sandbox/sandboxfs.c +++ b/fs/sandbox/sandboxfs.c @@ -7,6 +7,7 @@ #include <fs.h> #include <malloc.h> #include <os.h> +#include <sandboxfs.h> int sandbox_fs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info) { diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c index 742c2f47eb..bb35512380 100644 --- a/fs/ubifs/ubifs.c +++ b/fs/ubifs/ubifs.c @@ -17,6 +17,7 @@ #include <malloc.h> #include <memalign.h> #include "ubifs.h" +#include <part.h> #include <dm/devres.h> #include <u-boot/zlib.h> |