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