ACPI: PCI: Replace ACPI_DEBUG_PRINT() and ACPI_EXCEPTION()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 19 Feb 2021 18:16:10 +0000 (19:16 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 8 Mar 2021 15:51:08 +0000 (16:51 +0100)
commitc02b2fcd75060bcd497094b0e55359b8ac765186
treeb01bed1b50716ee486f3fe55e9e296fd1b7528bb
parentbf5144a612f31baaf2cb2294dc92dd19d461ca67
ACPI: PCI: Replace ACPI_DEBUG_PRINT() and ACPI_EXCEPTION()

The ACPI_DEBUG_PRINT() and ACPI_EXCEPTION() macros are used for
message printing in the ACPICA code and they should not be used
elsewhere.  Special configuration (either kernel command line or
sysfs-based) is needed to see the messages printed by them and
the format of those messages is also special and convoluted.

For this reason, replace all of the ACPI_DEBUG_PRINT() and
ACPI_EXCEPTION() instances in pci_link.c with acpi_handle_*() calls
relative to the ACPI handle of the given link device (wherever that
handle is readily available) or pr_debug() invocations.

While at it, make acpi_pci_link_check_current() print all messages
with pr_debug(), because all of them are in the same category (_CRS
return buffer issues) and they all should be printed at the same log
level.

Also make acpi_pci_link_set() use acpi_handle_*() for printing all
messages for consistency.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Hanjun Guo <guohanjun@huawei.com>
drivers/acpi/pci_link.c