blob: afed62aae94975bc0456bdb8687cddf3033d6607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _MNPNET_H
#define _MNPNET_H
/** @file
*
* MNP NIC driver
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
struct efi_device;
extern int mnpnet_start ( struct efi_device *efidev );
extern void mnpnet_stop ( struct efi_device *efidev );
#endif /* _MNPNET_H */
|