On Thu, May 28, 2020 at 10:39 AM Yicong Yang <yangyicong@xxxxxxxxxxxxx> wrote: > > 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; > } > > -- Applied as 5.8 material under the "ACPI: PCI: Fix the ASPM part of the _OSC failure message" subject and with a different changelog. Thanks!