mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
Use 'struct' instead of a typdef. Also since 'struct block_dev_desc' is long and causes 80-column violations, rename it to struct blk_desc. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
18 lines
310 B
C
18 lines
310 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 {
|
|
struct blk_desc blk_dev;
|
|
char *filename;
|
|
int fd;
|
|
};
|
|
|
|
int host_dev_bind(int dev, char *filename);
|
|
|
|
#endif
|