aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorYu Zhao <yu.zhao@intel.com>2008-11-21 13:39:32 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-01-07 14:13:01 -0500
commitfde09c6d8f92de0c9f75698a75f0989f2234c517 (patch)
tree7d01ac3c194e87897185a2bf015f6d3b472e7601 /drivers/pci
parent14add80b5120966fe0659d61815b9e9b4b68fdc5 (diff)
PCI: define PCI resource names in an 'enum'
This patch moves all definitions of the PCI resource names to an 'enum', and also replaces some hard-coded resource variables with symbol names. This change eases introduction of device specific resources. Reviewed-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Yu Zhao <yu.zhao@intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/pci-sysfs.c4
-rw-r--r--drivers/pci/probe.c2
-rw-r--r--drivers/pci/proc.c7
3 files changed, 8 insertions, 5 deletions
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
index d2f1354fd189..ea54cedcdfc6 100644
--- a/drivers/pci/pci-sysfs.c
+++ b/drivers/pci/pci-sysfs.c
@@ -102,11 +102,13 @@ resource_show(struct device * dev, struct device_attribute *attr, char * buf)
102 struct pci_dev * pci_dev = to_pci_dev(dev); 102 struct pci_dev * pci_dev = to_pci_dev(dev);
103 char * str = buf; 103 char * str = buf;
104 int i; 104 int i;
105 int max = 7; 105 int max;
106 resource_size_t start, end; 106 resource_size_t start, end;
107 107
108 if (pci_dev->subordinate) 108 if (pci_dev->subordinate)
109 max = DEVICE_COUNT_RESOURCE; 109 max = DEVICE_COUNT_RESOURCE;
110 else
111 max = PCI_BRIDGE_RESOURCES;
110 112
111 for (i = 0; i < max; i++) { 113 for (i = 0; i < max; i++) {
112 struct resource *res = &pci_dev->resource[i]; 114 struct resource *res = &pci_dev->resource[i];
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 5dcf2b65e3f9..e1cf5d50ed4d 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -423,7 +423,7 @@ static struct pci_bus *pci_alloc_child_bus(struct pci_bus *parent,
423 child->subordinate = 0xff; 423 child->subordinate = 0xff;
424 424
425 /* Set up default resource pointers and names.. */ 425 /* Set up default resource pointers and names.. */
426 for (i = 0; i < 4; i++) { 426 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
427 child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i]; 427 child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i];
428 child->resource[i]->name = child->name; 428 child->resource[i]->name = child->name;
429 } 429 }
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",