mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
61143f741e
Fix diacritics in some instances of my name and change my e-mail address to kabel@kernel.org. Add corresponding .mailmap entries. Signed-off-by: Marek Behún <kabel@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
24 lines
602 B
C
24 lines
602 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* BTRFS filesystem implementation for U-Boot
|
|
*
|
|
* 2017 Marek Behún, CZ.NIC, kabel@kernel.org
|
|
*/
|
|
|
|
#ifndef __U_BOOT_BTRFS_H__
|
|
#define __U_BOOT_BTRFS_H__
|
|
|
|
struct blk_desc;
|
|
struct disk_partition;
|
|
|
|
int btrfs_probe(struct blk_desc *fs_dev_desc,
|
|
struct disk_partition *fs_partition);
|
|
int btrfs_ls(const char *);
|
|
int btrfs_exists(const char *);
|
|
int btrfs_size(const char *, loff_t *);
|
|
int btrfs_read(const char *, void *, loff_t, loff_t, loff_t *);
|
|
void btrfs_close(void);
|
|
int btrfs_uuid(char *);
|
|
void btrfs_list_subvols(void);
|
|
|
|
#endif /* __U_BOOT_BTRFS_H__ */
|