Fix code that deals with multiple host to PCI bridges by making the next

one use the highest seen bus number plus 1 as its starting point.
This commit is contained in:
Stefan Eßer 1996-09-05 21:28:51 +00:00
parent 36d4ab45ac
commit 77b3da75e6
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: pci.c,v 1.51 1996/06/09 11:58:19 asami Exp $
** $Id: pci.c,v 1.52 1996/09/02 21:23:04 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@ -971,6 +971,7 @@ void pci_configure()
if (pcicb)
pcicb = pcicb->pcicb_next;
}
pcibusmax++;
}
pci_conf_count++;
}

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: pci.c,v 1.51 1996/06/09 11:58:19 asami Exp $
** $Id: pci.c,v 1.52 1996/09/02 21:23:04 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@ -971,6 +971,7 @@ void pci_configure()
if (pcicb)
pcicb = pcicb->pcicb_next;
}
pcibusmax++;
}
pci_conf_count++;
}