diff options
author | Yu Zhao <yu.zhao@intel.com> | 2008-11-21 13:39:32 -0500 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-01-07 14:13:01 -0500 |
commit | fde09c6d8f92de0c9f75698a75f0989f2234c517 (patch) | |
tree | 7d01ac3c194e87897185a2bf015f6d3b472e7601 /drivers/pci/pci-sysfs.c | |
parent | 14add80b5120966fe0659d61815b9e9b4b68fdc5 (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/pci-sysfs.c')
-rw-r--r-- | drivers/pci/pci-sysfs.c | 4 |
1 files changed, 3 insertions, 1 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]; |