Blame view

include/sandboxblockdev.h 336 Bytes
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
f4d8de48f   Henrik Nordström   sandbox: block dr...
2
3
  /*
   * Copyright (c) 2013, Henrik Nordstrom <henrik@henriknordstrom.net>
f4d8de48f   Henrik Nordström   sandbox: block dr...
4
5
6
7
8
9
   */
  
  #ifndef __SANDBOX_BLOCK_DEV__
  #define __SANDBOX_BLOCK_DEV__
  
  struct host_block_dev {
40fd05089   Simon Glass   dm: sandbox: Add ...
10
  #ifndef CONFIG_BLK
4101f6879   Simon Glass   dm: Drop the bloc...
11
  	struct blk_desc blk_dev;
40fd05089   Simon Glass   dm: sandbox: Add ...
12
  #endif
f4d8de48f   Henrik Nordström   sandbox: block dr...
13
14
15
16
17
18
19
  	char *filename;
  	int fd;
  };
  
  int host_dev_bind(int dev, char *filename);
  
  #endif