blob: de0ac687bb92ace7672046381734ab36c56fae29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _NII_H
#define _NII_H
/** @file
*
* NII driver
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
struct efi_device;
extern int nii_start ( struct efi_device *efidev );
extern void nii_stop ( struct efi_device *efidev );
#endif /* _NII_H */
|