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