From: Robert Richter Date: Tue, 7 Jan 2025 16:19:22 +0000 (+0100) Subject: ACPI: PRM: Fix missing guid_t declaration in linux/prmt.h X-Git-Tag: v6.14-rc1~147^2~1^5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4757d84abf523ea831dba0c136db4050d55c99f;p=thirdparty%2Fkernel%2Flinux.git ACPI: PRM: Fix missing guid_t declaration in linux/prmt.h Seen the following build error: ./include/linux/prmt.h:5:27: error: unknown type name ‘guid_t’ 5 | int acpi_call_prm_handler(guid_t handler_guid, void *param_buffer); | ^~~~~~ The include file uses guid_t but it is not declared. Include linux/uuid.h to fix this. Signed-off-by: Robert Richter Reviewed-by: Yazen Ghannam Link: https://patch.msgid.link/20250107161923.3387552-1-rrichter@amd.com Signed-off-by: Rafael J. Wysocki --- diff --git a/include/linux/prmt.h b/include/linux/prmt.h index 9c094294403ff..c53ab287e9320 100644 --- a/include/linux/prmt.h +++ b/include/linux/prmt.h @@ -1,5 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include + #ifdef CONFIG_ACPI_PRMT void init_prmt(void); int acpi_call_prm_handler(guid_t handler_guid, void *param_buffer);