aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/probe.c
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/probe.c
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/probe.c')
-rw-r--r--drivers/pci/probe.c2
1 files changed, 1 insertions, 1 deletions
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 }