blob: 07f6bc5ea402b172bf09af8f9e37d53498064d98 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Marek Behún5994e8b2017-09-03 17:00:24 +02002/*
Marek Behún61143f72022-06-01 17:17:06 +02003 * 2017 by Marek Behún <kabel@kernel.org>
Marek Behún5994e8b2017-09-03 17:00:24 +02004 *
5 * Derived from code in ext4/dev.c, which was based on reiserfs/dev.c
Marek Behún5994e8b2017-09-03 17:00:24 +02006 */
7
8#ifndef __U_BOOT_FS_INTERNAL_H__
9#define __U_BOOT_FS_INTERNAL_H__
10
11#include <part.h>
12
Simon Glass05289792020-05-10 11:39:57 -060013int fs_devread(struct blk_desc *, struct disk_partition *, lbaint_t, int, int,
Marek Behún5994e8b2017-09-03 17:00:24 +020014 char *);
15
16#endif /* __U_BOOT_FS_INTERNAL_H__ */