diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-11-14 00:34:18 (GMT) |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-11-24 23:29:24 (GMT) |
commit | d7e6b66fe87c9f42480d73fc314aecaeae84ca6b (patch) | |
tree | 0d8f33a6df0c684f6b7da1e7cbfaf7771cde5bee /arch/x86/include/asm/pci_x86.h | |
parent | d215a9c8b46e55a1d3bc1cd907c943ef95938a0e (diff) | |
download | linux-fsl-qoriq-d7e6b66fe87c9f42480d73fc314aecaeae84ca6b.tar.xz |
x86/PCI: MMCONFIG: rename pci_mmcfg_region structure members
This only renames the struct pci_mmcfg_region members; no functional change.
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/include/asm/pci_x86.h')
-rw-r--r-- | arch/x86/include/asm/pci_x86.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/include/asm/pci_x86.h b/arch/x86/include/asm/pci_x86.h index 3a2ca5f..a752d61 100644 --- a/arch/x86/include/asm/pci_x86.h +++ b/arch/x86/include/asm/pci_x86.h @@ -120,9 +120,9 @@ extern int __init pcibios_init(void); struct pci_mmcfg_region { u64 address; - u16 pci_segment; - u8 start_bus_number; - u8 end_bus_number; + u16 segment; + u8 start_bus; + u8 end_bus; }; extern int __init pci_mmcfg_arch_init(void); |