blob: 4699c7892f8d59da46cb46f9f7d269242d28bc0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _SNPNET_H
#define _SNPNET_H
/** @file
*
* SNP NIC driver
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
struct efi_device;
extern int snpnet_supported ( EFI_HANDLE device, EFI_GUID *protocol );
extern int snpnet_start ( struct efi_device *efidev );
extern void snpnet_stop ( struct efi_device *efidev );
#endif /* _SNPNET_H */
|