aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/btrfs.h
diff options
context:
space:
mode:
authorQu Wenruo <wqu@suse.com>2020-06-24 18:03:00 +0200
committerTom Rini <trini@konsulko.com>2020-09-07 20:57:27 -0400
commit57f24f10733ac57754d4eae3666919480718b032 (patch)
treeadb4514fcccde61bf3d30ef860b5c96a14c6b565 /fs/btrfs/btrfs.h
parent29c26ae8bcae9a6e03012c3c2398c0e7edc69a16 (diff)
fs: btrfs: Crossport btrfs_read_sys_array() and btrfs_read_chunk_tree()
These two functions play a big role in btrfs bootstrap. The following function is removed: - Seed device support Although in theory we can still support multiple devices, we don't have a facility in U-Boot to do device scan without opening them. Signed-off-by: Qu Wenruo <wqu@suse.com> Reviewed-by: Marek BehĂșn <marek.behun@nic.cz>
Diffstat (limited to 'fs/btrfs/btrfs.h')
-rw-r--r--fs/btrfs/btrfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/btrfs.h b/fs/btrfs/btrfs.h
index ae29226e9a9..7dfdaf77ba3 100644
--- a/fs/btrfs/btrfs.h
+++ b/fs/btrfs/btrfs.h
@@ -33,7 +33,7 @@ int btrfs_devread(u64, int, void *);
u64 btrfs_map_logical_to_physical(u64);
int btrfs_chunk_map_init(void);
void btrfs_chunk_map_exit(void);
-int btrfs_read_chunk_tree(void);
+int __btrfs_read_chunk_tree(void);
/* compression.c */
u32 btrfs_decompress(u8 type, const char *, u32, char *, u32);