Skip to content

Commit 06eb8dc

Browse files
c0d3z3r0rafaeljw
authored andcommitted
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 <linux@mniewoehner.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 42226c9 commit 06eb8dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/acpi/utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ acpi_evaluate_dsm(acpi_handle handle, const guid_t *guid, u64 rev, u64 func,
681681

682682
if (ret != AE_NOT_FOUND)
683683
acpi_handle_warn(handle,
684-
"failed to evaluate _DSM (0x%x)\n", ret);
684+
"failed to evaluate _DSM %pUb (0x%x)\n", guid, ret);
685685

686686
return NULL;
687687
}

0 commit comments

Comments
 (0)