]> Git Repo - linux.git/blob - include/linux/prmt.h
Merge tag 'sched_ext-for-6.14-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel...
[linux.git] / include / linux / prmt.h
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
9 static inline void init_prmt(void) { }
10 static inline int acpi_call_prm_handler(guid_t handler_guid, void *param_buffer)
11 {
12         return -EOPNOTSUPP;
13 }
14 #endif
This page took 0.030157 seconds and 4 git commands to generate.