mirror of
https://github.com/ipxe/ipxe
synced 2025-12-31 15:25:23 +03:00
18 lines
244 B
C
18 lines
244 B
C
|
|
#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 */
|