iPXE
undinet.h
Go to the documentation of this file.
1 #ifndef _UNDINET_H
2 #define _UNDINET_H
3 
4 /** @file
5  *
6  * UNDI network device driver
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 struct undi_device;
13 struct device;
14 
15 extern int undinet_probe ( struct undi_device *undi, struct device *dev );
16 extern void undinet_remove ( struct undi_device *undi );
17 
18 #endif /* _UNDINET_H */
void undinet_remove(struct undi_device *undi)
Remove UNDI device.
Definition: undinet.c:1042
A hardware device.
Definition: device.h:73
int undinet_probe(struct undi_device *undi, struct device *dev)
Probe UNDI device.
Definition: undinet.c:888
An UNDI device.
Definition: undi.h:22
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)