diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-11-13 19:34:08 -0500 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-11-24 18:29:11 -0500 |
commit | df5eb1d67e8074dfbc23cf396c556116728187b3 (patch) | |
tree | 1512457b52c6763ee9921094f62690d0a3b8b1e3 /arch/x86/include/asm/pci_x86.h | |
parent | f7ca69848786bb99fdfafb511791b078c298438e (diff) |
x86/PCI: MMCONFIG: add PCI_MMCFG_BUS_OFFSET() to factor common expression
This factors out the common "bus << 20" expression used when computing the
MMCONFIG address.
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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pci_x86.h b/arch/x86/include/asm/pci_x86.h index b399988eee3a..7d94a235ec82 100644 --- a/arch/x86/include/asm/pci_x86.h +++ b/arch/x86/include/asm/pci_x86.h | |||
@@ -124,6 +124,8 @@ extern void __init pci_mmcfg_arch_free(void); | |||
124 | extern struct acpi_mcfg_allocation *pci_mmcfg_config; | 124 | extern struct acpi_mcfg_allocation *pci_mmcfg_config; |
125 | extern int pci_mmcfg_config_num; | 125 | extern int pci_mmcfg_config_num; |
126 | 126 | ||
127 | #define PCI_MMCFG_BUS_OFFSET(bus) ((bus) << 20) | ||
128 | |||
127 | /* | 129 | /* |
128 | * AMD Fam10h CPUs are buggy, and cannot access MMIO config space | 130 | * AMD Fam10h CPUs are buggy, and cannot access MMIO config space |
129 | * on their northbrige except through the * %eax register. As such, you MUST | 131 | * on their northbrige except through the * %eax register. As such, you MUST |