diff --git a/src/sys/pci/pci.c b/src/sys/pci/pci.c index 3ab3b23..4b19fcb 100644 --- a/src/sys/pci/pci.c +++ b/src/sys/pci/pci.c @@ -293,7 +293,7 @@ uInt16 bus,dev,func; int i = 0x0; struct pciConfig pcfg; - for (bus = 0; bus < 255; bus++) { + for (bus = 0x0; bus < 0x2; bus++) { /* 255 */ for (dev = 0; dev < 32; dev++) { for (func = 0; func < 8; func++) { if (pciProbe(bus, dev, func, &pcfg) == TRUE) { @@ -313,6 +313,9 @@ /*** $Log$ + Revision 1.3 2004/08/20 16:49:11 reddawg + PCI Updates - More to follow as PCI system gets revamped + Revision 1.2 2004/07/09 11:58:19 reddawg Updating Driver Routines