mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00: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__ */
|