diff options
author | Sinan Kaya <okaya@kernel.org> | 2018-08-10 00:32:11 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2018-09-17 17:32:24 -0400 |
commit | 1ad61b612b95980a4d970c52022aa01dfc0f6068 (patch) | |
tree | 597bc611483f9d0316a33a16fc1132a09e71cefd | |
parent | aeae4f3e5c38d47bdaef50446dc0ec857307df68 (diff) |
PCI/ACPI: Correct error message for ASPM disabling
If _OSC execution fails today for platforms without an _OSC entry, code is
printing a misleading message saying disabling ASPM as follows:
acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
We need to ensure that platform supports ASPM to begin with.
Reported-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Sinan Kaya <okaya@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r-- | drivers/acpi/pci_root.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index 7433035ded95..e465e720eab2 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c | |||
@@ -455,8 +455,9 @@ static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm) | |||
455 | decode_osc_support(root, "OS supports", support); | 455 | decode_osc_support(root, "OS supports", support); |
456 | status = acpi_pci_osc_support(root, support); | 456 | status = acpi_pci_osc_support(root, support); |
457 | if (ACPI_FAILURE(status)) { | 457 | if (ACPI_FAILURE(status)) { |
458 | dev_info(&device->dev, "_OSC failed (%s); disabling ASPM\n", | 458 | dev_info(&device->dev, "_OSC failed (%s)%s\n", |
459 | acpi_format_exception(status)); | 459 | acpi_format_exception(status), |
460 | pcie_aspm_support_enabled() ? "; disabling ASPM" : ""); | ||
460 | *no_aspm = 1; | 461 | *no_aspm = 1; |
461 | return; | 462 | return; |
462 | } | 463 | } |