fs_internal.h 380 B

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