mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-15 15:51:44 +00:00
675fe200e5
function prefix "undinet_" and the variable name "undinic" in undinet.c, so that we can reserve the variable name "undi" for a struct undi_device. The idea is that we preserve the Etherboot 5.4 convention that the "UNDI" code refers to our using an underlying UNDI stack, while the "PXE" code refers to our providing a PXE API.
16 lines
248 B
C
16 lines
248 B
C
#ifndef _UNDINET_H
|
|
#define _UNDINET_H
|
|
|
|
/** @file
|
|
*
|
|
* UNDI network device driver
|
|
*
|
|
*/
|
|
|
|
struct undi_device;
|
|
|
|
extern int undinet_probe ( struct undi_device *undi );
|
|
extern void undinet_remove ( struct undi_device *undi );
|
|
|
|
#endif /* _UNDINET_H */
|