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
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11
12struct undi_device;
13struct device;
14
15extern int undinet_probe ( struct undi_device *undi, struct device *dev );
16extern void undinet_remove ( struct undi_device *undi );
17
18#endif /* _UNDINET_H */
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
A hardware device.
Definition device.h:77
An UNDI device.
Definition undi.h:22
int undinet_probe(struct undi_device *undi, struct device *dev)
Probe UNDI device.
Definition undinet.c:931
void undinet_remove(struct undi_device *undi)
Remove UNDI device.
Definition undinet.c:1089