aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci')
-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 fac5eddcefd2..ea15b0537457 100644
--- a/drivers/pci/pci-acpi.c
+++ b/drivers/pci/pci-acpi.c
@@ -171,12 +171,12 @@ static int __init acpi_pci_init(void)
171{ 171{
172 int ret; 172 int ret;
173 173
174 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) { 174 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_MSI) {
175 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n"); 175 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
176 pci_no_msi(); 176 pci_no_msi();
177 } 177 }
178 178
179 if (acpi_gbl_FADT.boot_flags & BAF_PCIE_ASPM_CONTROL) { 179 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
180 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n"); 180 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
181 pcie_no_aspm(); 181 pcie_no_aspm();
182 } 182 }