undipci_probe() has to calculate busdevfn anyway, so we may as well pass

it directly to undi_load_pci().
This commit is contained in:
Michael Brown
2007-01-09 02:58:07 +00:00
parent ed44e3730d
commit 6b09dd8244
3 changed files with 21 additions and 22 deletions
+18 -2
View File
@@ -10,8 +10,24 @@
struct undi_device;
struct undi_rom;
extern int undi_load_pci ( struct undi_device *undi, struct undi_rom *undirom,
unsigned int bus, unsigned int devfn );
extern int undi_load ( struct undi_device *undi, struct undi_rom *undirom );
extern int undi_unload ( struct undi_device *undi );
/**
* Call UNDI loader to create a pixie
*
* @v undi UNDI device
* @v undirom UNDI ROM
* @v pci_busdevfn PCI bus:dev.fn
* @ret rc Return status code
*/
static inline int undi_load_pci ( struct undi_device *undi,
struct undi_rom *undirom,
unsigned int pci_busdevfn ) {
undi->pci_busdevfn = pci_busdevfn;
undi->isapnp_csn = 0xffff;
undi->isapnp_read_port = 0xffff;
return undi_load ( undi, undirom );
}
#endif /* _UNDILOAD_H */