]> git.sur5r.net Git - u-boot/blob - include/sandboxblockdev.h
Merge branch 'next' of git://git.denx.de/u-boot-video
[u-boot] / include / sandboxblockdev.h
1 /*
2  * Copyright (c) 2013, Henrik Nordstrom <henrik@henriknordstrom.net>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #ifndef __SANDBOX_BLOCK_DEV__
8 #define __SANDBOX_BLOCK_DEV__
9
10 struct host_block_dev {
11 #ifndef CONFIG_BLK
12         struct blk_desc blk_dev;
13 #endif
14         char *filename;
15         int fd;
16 };
17
18 int host_dev_bind(int dev, char *filename);
19
20 #endif