diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-01-08 02:48:17 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-01-08 02:48:17 +0000 |
commit | afc01a1a7f32481661ed31c86fac29d750b00333 (patch) | |
tree | 54b353bb881adaf1789e58ac69bed20f8017334f /src/arch/i386/include/undiload.h | |
parent | 359c888aeca5efcc902fb20f425825bc594a1363 (diff) | |
download | ipxe-afc01a1a7f32481661ed31c86fac29d750b00333.tar.gz |
Split UNDI load/unload out into undiload.c.
Diffstat (limited to 'src/arch/i386/include/undiload.h')
-rw-r--r-- | src/arch/i386/include/undiload.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/arch/i386/include/undiload.h b/src/arch/i386/include/undiload.h new file mode 100644 index 000000000..cf234a245 --- /dev/null +++ b/src/arch/i386/include/undiload.h @@ -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 */ |