Previously we'll print wrong ASPM status if _OSC method return failed. For example, if ASPM is enabled by setting pcie_aspm=force, we get message below: acpi PNP0A08:02: _OSC failed (AE_NOT_FOUND); disabling ASPM Fix it and print correct ASPM status when _OSC failed. Fixes: 1ad61b612b95 ("PCI/ACPI: Correct error message for ASPM disabling") Signed-off-by: Yicong Yang <yangyicong@xxxxxxxxxxxxx> --- drivers/acpi/pci_root.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index ac8ad6c..5140b26 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c @@ -456,7 +456,7 @@ static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm, dev_info(&device->dev, "_OSC failed (%s)%s\n", acpi_format_exception(status), - pcie_aspm_support_enabled() ? "; disabling ASPM" : ""); + pcie_aspm_support_enabled() ? "" : "; disabling ASPM"); return; } -- 2.8.1