aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2009-11-13 19:34:24 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-11-24 18:29:34 -0500
commit95cf1cf0c5a767feb811dfed298b95b1df8824c7 (patch)
tree3aead3f6f02fd07e569299db04848703d73ef833 /arch/x86/pci
parentd7e6b66fe87c9f42480d73fc314aecaeae84ca6b (diff)
x86/PCI: MMCONFIG: use pointer to simplify pci_mmcfg_config[] structure access
No functional change, but simplifies a future patch to convert the table to a list. Reviewed-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/x86/pci')
-rw-r--r--arch/x86/pci/mmconfig-shared.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/x86/pci/mmconfig-shared.c b/arch/x86/pci/mmconfig-shared.c
index 5479fbb2d6ab..28ac9f58a986 100644
--- a/arch/x86/pci/mmconfig-shared.c
+++ b/arch/x86/pci/mmconfig-shared.c
@@ -54,12 +54,14 @@ static __init struct pci_mmcfg_region *pci_mmconfig_add(int segment, int start,
54 kfree(pci_mmcfg_config); 54 kfree(pci_mmcfg_config);
55 } 55 }
56 pci_mmcfg_config = new; 56 pci_mmcfg_config = new;
57
58 pci_mmcfg_config_num++; 57 pci_mmcfg_config_num++;
59 pci_mmcfg_config[i].address = addr; 58
60 pci_mmcfg_config[i].segment = segment; 59 new = &pci_mmcfg_config[i];
61 pci_mmcfg_config[i].start_bus = start; 60
62 pci_mmcfg_config[i].end_bus = end; 61 new->address = addr;
62 new->segment = segment;
63 new->start_bus = start;
64 new->end_bus = end;
63 65
64 return &pci_mmcfg_config[i]; 66 return &pci_mmcfg_config[i];
65} 67}