2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2017-09-03 15:00:24 +00:00
|
|
|
/*
|
2022-06-01 15:17:06 +00:00
|
|
|
* 2017 by Marek Behún <kabel@kernel.org>
|
2017-09-03 15:00:24 +00:00
|
|
|
*
|
|
|
|
* Derived from code in ext4/dev.c, which was based on reiserfs/dev.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __U_BOOT_FS_INTERNAL_H__
|
|
|
|
#define __U_BOOT_FS_INTERNAL_H__
|
|
|
|
|
|
|
|
#include <part.h>
|
|
|
|
|
2020-05-10 17:39:57 +00:00
|
|
|
int fs_devread(struct blk_desc *, struct disk_partition *, lbaint_t, int, int,
|
2017-09-03 15:00:24 +00:00
|
|
|
char *);
|
|
|
|
|
|
|
|
#endif /* __U_BOOT_FS_INTERNAL_H__ */
|