/* SPDX-License-Identifier: MIT */ | |
/* | |
* Copyright © 2019 Intel Corporation | |
*/ | |
#ifndef __INTEL_ACPI_H__ | |
#define __INTEL_ACPI_H__ | |
#ifdef CONFIG_ACPI | |
void intel_register_dsm_handler(void); | |
void intel_unregister_dsm_handler(void); | |
#else | |
static inline void intel_register_dsm_handler(void) { return; } | |
static inline void intel_unregister_dsm_handler(void) { return; } | |
#endif /* CONFIG_ACPI */ | |
#endif /* __INTEL_ACPI_H__ */ |