]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/sandboxblockdev.h
tegra: imx: omap: enable Moschip USB ethernet support for several boards
[karo-tx-uboot.git] / 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         block_dev_desc_t blk_dev;
12         char *filename;
13         int fd;
14 };
15
16 int host_dev_bind(int dev, char *filename);
17
18 #endif