|
@@ -361,15 +361,16 @@ static int show_device(struct seq_file *m, void *v)
|
|
dev->vendor,
|
|
dev->vendor,
|
|
dev->device,
|
|
dev->device,
|
|
dev->irq);
|
|
dev->irq);
|
|
- /* Here should be 7 and not PCI_NUM_RESOURCES as we need to preserve compatibility */
|
|
|
|
- for (i=0; i<7; i++) {
|
|
|
|
|
|
+
|
|
|
|
+ /* only print standard and ROM resources to preserve compatibility */
|
|
|
|
+ for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
|
|
resource_size_t start, end;
|
|
resource_size_t start, end;
|
|
pci_resource_to_user(dev, i, &dev->resource[i], &start, &end);
|
|
pci_resource_to_user(dev, i, &dev->resource[i], &start, &end);
|
|
seq_printf(m, "\t%16llx",
|
|
seq_printf(m, "\t%16llx",
|
|
(unsigned long long)(start |
|
|
(unsigned long long)(start |
|
|
(dev->resource[i].flags & PCI_REGION_FLAG_MASK)));
|
|
(dev->resource[i].flags & PCI_REGION_FLAG_MASK)));
|
|
}
|
|
}
|
|
- for (i=0; i<7; i++) {
|
|
|
|
|
|
+ for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
|
|
resource_size_t start, end;
|
|
resource_size_t start, end;
|
|
pci_resource_to_user(dev, i, &dev->resource[i], &start, &end);
|
|
pci_resource_to_user(dev, i, &dev->resource[i], &start, &end);
|
|
seq_printf(m, "\t%16llx",
|
|
seq_printf(m, "\t%16llx",
|