xref: /openbmc/u-boot/include/fs_internal.h (revision c68c03f5)
1 /*
2  * 2017 by Marek Behun <marek.behun@nic.cz>
3  *
4  * Derived from code in ext4/dev.c, which was based on reiserfs/dev.c
5  *
6  * SPDX-License-Identifier:	GPL-2.0
7  */
8 
9 #ifndef __U_BOOT_FS_INTERNAL_H__
10 #define __U_BOOT_FS_INTERNAL_H__
11 
12 #include <part.h>
13 
14 int fs_devread(struct blk_desc *, disk_partition_t *, lbaint_t, int, int,
15 	       char *);
16 
17 #endif /* __U_BOOT_FS_INTERNAL_H__ */
18