Description of Problem: in the function cyg_pci_get_device_info the probe function stops when an inactive bar is found. This is not right. It free to choose any of the BAR's to use in the hardware so all 6 BARS have to be scanned. (see PCI- spec Revision 2.2 page 204) Problem can be solved by deleting the next lines in both paths of the if then else construction: // No reason to scan beyond first inactive BAR. if (size == 0) { dev_info->num_bars = i; break; } Version-Release number of selected component (if applicable): CVS How Reproducible: Steps to Reproduce: 1. 2. 3. Actual Results: Expected Results: Additional Information:
This bug has moved to http://bugs.ecos.sourceware.org/show_bug.cgi?id=55891