mirror of
https://github.com/ipxe/ipxe
synced 2025-12-30 04:28:12 +03:00
End users almost certainly don't care whether the underlying interface is SNP or NII/UNDI. Try to minimise surprise and unnecessary documentation by including the NII driver whenever the SNP driver is requested. Signed-off-by: Michael Brown <mcb30@ipxe.org>
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 */
|