david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[bofm] Match port numbering as used in CSV file

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2011-05-04 10:14:47 +01:00
parent 38cd351243
commit 44689343c0
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ int bofm ( userptr_t bofmtab, struct pci_device *pci ) {
DBG2_HDA ( en_offset, &en, sizeof ( en ) );
if ( ( en.options & BOFM_EN_MAP_MASK ) != BOFM_EN_MAP_PFA ) {
DBG ( "BOFM: slot %d port %d has no PCI mapping\n",
en.slot, en.port );
en.slot, ( en.port + 1 ) );
continue;
}
bofm = bofm_find_busdevfn ( en.busdevfn );