Files
ipxe/src/drivers/net/efi/nii.h
Michael Brown af17abf67f [efi] Include NII driver within "snp" and "snponly" build targets
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>
2014-10-17 16:52:31 +01:00

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 */