diff options
Diffstat (limited to 'drivers/pci/proc.c')
-rw-r--r-- | drivers/pci/proc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c index 7fb086d39617..593bb844b8db 100644 --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c | |||
@@ -361,15 +361,16 @@ static int show_device(struct seq_file *m, void *v) | |||
361 | dev->vendor, | 361 | dev->vendor, |
362 | dev->device, | 362 | dev->device, |
363 | dev->irq); | 363 | dev->irq); |
364 | /* Here should be 7 and not PCI_NUM_RESOURCES as we need to preserve compatibility */ | 364 | |
365 | for (i=0; i<7; i++) { | 365 | /* only print standard and ROM resources to preserve compatibility */ |
366 | for (i = 0; i <= PCI_ROM_RESOURCE; i++) { | ||
366 | resource_size_t start, end; | 367 | resource_size_t start, end; |
367 | pci_resource_to_user(dev, i, &dev->resource[i], &start, &end); | 368 | pci_resource_to_user(dev, i, &dev->resource[i], &start, &end); |
368 | seq_printf(m, "\t%16llx", | 369 | seq_printf(m, "\t%16llx", |
369 | (unsigned long long)(start | | 370 | (unsigned long long)(start | |
370 | (dev->resource[i].flags & PCI_REGION_FLAG_MASK))); | 371 | (dev->resource[i].flags & PCI_REGION_FLAG_MASK))); |
371 | } | 372 | } |
372 | for (i=0; i<7; i++) { | 373 | for (i = 0; i <= PCI_ROM_RESOURCE; i++) { |
373 | resource_size_t start, end; | 374 | resource_size_t start, end; |
374 | pci_resource_to_user(dev, i, &dev->resource[i], &start, &end); | 375 | pci_resource_to_user(dev, i, &dev->resource[i], &start, &end); |
375 | seq_printf(m, "\t%16llx", | 376 | seq_printf(m, "\t%16llx", |