intel_acpi.h revision 1.2
1/*	$NetBSD: intel_acpi.h,v 1.2 2021/12/18 23:45:29 riastradh Exp $	*/
2
3/* SPDX-License-Identifier: MIT */
4/*
5 * Copyright © 2019 Intel Corporation
6 */
7
8#ifndef __INTEL_ACPI_H__
9#define __INTEL_ACPI_H__
10
11#ifdef CONFIG_ACPI
12void intel_register_dsm_handler(void);
13void intel_unregister_dsm_handler(void);
14#else
15static inline void intel_register_dsm_handler(void) { return; }
16static inline void intel_unregister_dsm_handler(void) { return; }
17#endif /* CONFIG_ACPI */
18
19#endif /* __INTEL_ACPI_H__ */
20