^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) /******************************************************************************
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) * Name: accommon.h - Common include files for generation of ACPICA source
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) * Copyright (C) 2000 - 2020, Intel Corp.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) *****************************************************************************/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #ifndef __ACCOMMON_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #define __ACCOMMON_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) * Common set of includes for all ACPICA source files.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) * We put them here because we don't want to duplicate them
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) * in the the source code again and again.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) * Note: The order of these include files is important.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #include <acpi/acconfig.h> /* Global configuration constants */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #include "acmacros.h" /* C macros */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #include "aclocal.h" /* Internal data types */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) #include "acobject.h" /* ACPI internal object */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) #include "acstruct.h" /* Common structures */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) #include "acglobal.h" /* All global variables */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #include "achware.h" /* Hardware defines and interfaces */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) #include "acutils.h" /* Utility interfaces */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #ifndef ACPI_USE_SYSTEM_CLIBRARY
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) #include "acclib.h" /* C library interfaces */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) #endif /* !ACPI_USE_SYSTEM_CLIBRARY */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) #endif /* __ACCOMMON_H__ */