aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-07-14 13:55:52 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-07-14 13:55:52 -0400
commit2a9aeabdfb34374ecac25e7a8d21c9e368618cd4 (patch)
tree807884b6de91965c9b872b9150bfca7bd49f6727 /src
parentc02c219cd79299a0a153ecf862f0e301a057f2cb (diff)
downloadseabios-hppa-2a9aeabdfb34374ecac25e7a8d21c9e368618cd4.zip
seabios-hppa-2a9aeabdfb34374ecac25e7a8d21c9e368618cd4.tar.gz
seabios-hppa-2a9aeabdfb34374ecac25e7a8d21c9e368618cd4.tar.bz2
Fix USB EHCI detection that was broken in hlist conversion of PCIDevices.
Make sure the PCI device list is ordered in bus order. Don't iterate past the end of the list when detecting EHCI devices. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/pci.c1
-rw-r--r--src/usb.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/pci.c b/src/pci.c
index 6163a29..dc62c5c 100644
--- a/src/pci.c
+++ b/src/pci.c
@@ -122,6 +122,7 @@ pci_probe_devices(void)
}
memset(dev, 0, sizeof(*dev));
hlist_add(&dev->node, pprev);
+ pprev = &dev->node.next;
count++;
// Find parent device.
diff --git a/src/usb.c b/src/usb.c
index ecccd75..42541ff 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -444,7 +444,7 @@ usb_setup(void)
}
if (ehcipci->class == PCI_CLASS_SERIAL_USB)
found++;
- ehcipci = container_of(
+ ehcipci = container_of_or_null(
ehcipci->node.next, struct pci_device, node);
if (!ehcipci || (pci_bdf_to_busdev(ehcipci->bdf)
!= pci_bdf_to_busdev(pci->bdf)))