mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
40fd050890
Update the host driver to support driver model for block devices. A future commit will remove the old code, but for now it is useful to be able to use it both with and without CONFIG_BLK. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Stephen Warren <swarren@nvidia.com>
20 lines
336 B
C
20 lines
336 B
C
/*
|
|
* Copyright (c) 2013, Henrik Nordstrom <henrik@henriknordstrom.net>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __SANDBOX_BLOCK_DEV__
|
|
#define __SANDBOX_BLOCK_DEV__
|
|
|
|
struct host_block_dev {
|
|
#ifndef CONFIG_BLK
|
|
struct blk_desc blk_dev;
|
|
#endif
|
|
char *filename;
|
|
int fd;
|
|
};
|
|
|
|
int host_dev_bind(int dev, char *filename);
|
|
|
|
#endif
|