mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +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>
26 lines
588 B
C
26 lines
588 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* BTRFS filesystem implementation for U-Boot
|
|
*
|
|
* 2017 Marek Behún, CZ.NIC, kabel@kernel.org
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <blk.h>
|
|
#include <compiler.h>
|
|
#include <fs_internal.h>
|
|
|
|
struct blk_desc *btrfs_blk_desc;
|
|
struct disk_partition *btrfs_part_info;
|
|
|
|
int btrfs_devread(u64 address, int byte_len, void *buf)
|
|
{
|
|
lbaint_t sector;
|
|
int byte_offset;
|
|
|
|
sector = address >> btrfs_blk_desc->log2blksz;
|
|
byte_offset = address % btrfs_blk_desc->blksz;
|
|
|
|
return fs_devread(btrfs_blk_desc, btrfs_part_info, sector, byte_offset,
|
|
byte_len, buf);
|
|
}
|