From a0dbef1a26aa0fd5d6f3bc19c7b3d6b4d8d3e16d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 1 Dec 2009 10:03:51 +0000 Subject: (pci_probe) no need to lookup extended PCI capabilities --- pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pci.c b/pci.c index 244bd3b..1609fe7 100644 --- a/pci.c +++ b/pci.c @@ -57,7 +57,7 @@ extern struct pciusb_entries pci_probe(void) { memset(buf, 0, CONFIG_SPACE_SIZE); // make sure not to retrieve values from previous devices pci_setup_cache(dev, (u8*)buf, CONFIG_SPACE_SIZE); pci_read_block(dev, 0, buf, CONFIG_SPACE_SIZE); - pci_fill_info(dev, PCI_FILL_IDENT | PCI_FILL_CLASS | PCI_FILL_CAPS | PCI_FILL_EXT_CAPS); + pci_fill_info(dev, PCI_FILL_IDENT | PCI_FILL_CLASS | PCI_FILL_CAPS); pciusb_initialize(e); -- cgit v1.2.1