mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-04 21:41:29 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
31 lines
651 B
C
31 lines
651 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
*
|
|
* based on code of fs/reiserfs/dev.c by
|
|
*
|
|
* (C) Copyright 2003 - 2004
|
|
* Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com>
|
|
*/
|
|
|
|
|
|
#include <common.h>
|
|
#include <config.h>
|
|
#include <fs_internal.h>
|
|
#include <zfs_common.h>
|
|
|
|
static struct blk_desc *zfs_blk_desc;
|
|
static struct disk_partition *part_info;
|
|
|
|
void zfs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info)
|
|
{
|
|
zfs_blk_desc = rbdd;
|
|
part_info = info;
|
|
}
|
|
|
|
/* err */
|
|
int zfs_devread(int sector, int byte_offset, int byte_len, char *buf)
|
|
{
|
|
return fs_devread(zfs_blk_desc, part_info, sector, byte_offset,
|
|
byte_len, buf) ? 0 : 1;
|
|
}
|