mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 11:15:10 +07:00
18 lines
424 B
C
18 lines
424 B
C
|
/* 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__ */
|