Blame view

include/sandboxblockdev.h 336 Bytes
f4d8de48f   Henrik Nordström   sandbox: block dr...
1
2
3
4
5
6
7
8
9
10
  /*
   * 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 {
40fd05089   Simon Glass   dm: sandbox: Add ...
11
  #ifndef CONFIG_BLK
4101f6879   Simon Glass   dm: Drop the bloc...
12
  	struct blk_desc blk_dev;
40fd05089   Simon Glass   dm: sandbox: Add ...
13
  #endif
f4d8de48f   Henrik Nordström   sandbox: block dr...
14
15
16
17
18
19
20
  	char *filename;
  	int fd;
  };
  
  int host_dev_bind(int dev, char *filename);
  
  #endif