aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/utils.c
diff options
context:
space:
mode:
authorMichael Niewöhner <[email protected]>2022-05-17 18:40:06 +0000
committerRafael J. Wysocki <[email protected]>2022-05-19 18:06:26 +0000
commit06eb8dc097b3fcb2d02eb553b17af5fcc2952f96 (patch)
tree7c98f830773b36297881f4ffdf0e6f6993bad611 /drivers/acpi/utils.c
parentLinux 5.18-rc7 (diff)
downloadkernel-06eb8dc097b3fcb2d02eb553b17af5fcc2952f96.tar.gz
kernel-06eb8dc097b3fcb2d02eb553b17af5fcc2952f96.zip
ACPI: utils: include UUID in _DSM evaluation warning
The _DSM evaluation warning in its current form is not very helpful, as it lacks any specific information: ACPI: \: failed to evaluate _DSM (0x1001) Thus, include the UUID of the missing _DSM: ACPI: \: failed to evaluate _DSM bf0212f2-... (0x1001) Signed-off-by: Michael Niewöhner <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
Diffstat (limited to 'drivers/acpi/utils.c')
-rw-r--r--drivers/acpi/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/utils.c b/drivers/acpi/utils.c
index d5cedffeeff9..3a9773a09e19 100644
--- a/drivers/acpi/utils.c
+++ b/drivers/acpi/utils.c
@@ -681,7 +681,7 @@ acpi_evaluate_dsm(acpi_handle handle, const guid_t *guid, u64 rev, u64 func,
if (ret != AE_NOT_FOUND)
acpi_handle_warn(handle,
- "failed to evaluate _DSM (0x%x)\n", ret);
+ "failed to evaluate _DSM %pUb (0x%x)\n", guid, ret);
return NULL;
}