aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci-acpi.c
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2009-02-03 02:14:33 -0500
committerLen Brown <len.brown@intel.com>2009-03-26 16:38:21 -0400
commit993958fecab6eabc6ee5b7ed65c56d716fd5cfe3 (patch)
treedab5afbf110b7e4b1e380105398c03499080fdf6 /drivers/pci/pci-acpi.c
parentd3ccaff827cef5a5c5a0f3c97e1e2e6d99f618cb (diff)
ACPICA: Update FADT flag definitions
Add new flags in the Boot Architecture flags field. Update comments for all FADT flags. Add FADT version when each flag was defined. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/pci/pci-acpi.c')
-rw-r--r--drivers/pci/pci-acpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c
index deea8a187eb8..368ca72dffbc 100644
--- a/drivers/pci/pci-acpi.c
+++ b/drivers/pci/pci-acpi.c
@@ -386,12 +386,12 @@ static int __init acpi_pci_init(void)
386{ 386{
387 int ret; 387 int ret;
388 388
389 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) { 389 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_MSI) {
390 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n"); 390 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
391 pci_no_msi(); 391 pci_no_msi();
392 } 392 }
393 393
394 if (acpi_gbl_FADT.boot_flags & BAF_PCIE_ASPM_CONTROL) { 394 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
395 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n"); 395 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
396 pcie_no_aspm(); 396 pcie_no_aspm();
397 } 397 }