1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #include <linux/uuid.h> 4 5 #ifdef CONFIG_ACPI_PRMT 6 void init_prmt(void); 7 int acpi_call_prm_handler(guid_t handler_guid, void *param_buffer); 8 #else init_prmt(void)9static inline void init_prmt(void) { } acpi_call_prm_handler(guid_t handler_guid,void * param_buffer)10static inline int acpi_call_prm_handler(guid_t handler_guid, void *param_buffer) 11 { 12 return -EOPNOTSUPP; 13 } 14 #endif 15