Split UNDI load/unload out into undiload.c.

This commit is contained in:
Michael Brown
2007-01-08 02:48:17 +00:00
parent 359c888aec
commit afc01a1a7f
2 changed files with 203 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _UNDILOAD_H
#define _UNDILOAD_H
/** @file
*
* UNDI load/unload
*
*/
extern int undi_load_pci ( struct undi_device *undi, struct undi_rom *undirom,
unsigned int bus, unsigned int devfn );
extern int undi_unload ( struct undi_device *undi );
#endif /* _UNDILOAD_H */