blob: 8bc935977d8e92dc541ff011187f9ac27466e9de [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
Bob Moore50df4d82008-12-31 03:01:23 +08002/******************************************************************************
3 *
4 * Name: accommon.h - Common include files for generation of ACPICA source
5 *
Bob Mooreda6f8322018-01-04 10:06:38 -08006 * Copyright (C) 2000 - 2018, Intel Corp.
Bob Moore50df4d82008-12-31 03:01:23 +08007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Bob Moore50df4d82008-12-31 03:01:23 +08009
10#ifndef __ACCOMMON_H__
11#define __ACCOMMON_H__
12
13/*
14 * Common set of includes for all ACPICA source files.
15 * We put them here because we don't want to duplicate them
16 * in the the source code again and again.
17 *
18 * Note: The order of these include files is important.
19 */
Lv Zheng739dcbb2012-12-20 01:07:26 +000020#include <acpi/acconfig.h> /* Global configuration constants */
Bob Moore50df4d82008-12-31 03:01:23 +080021#include "acmacros.h" /* C macros */
22#include "aclocal.h" /* Internal data types */
23#include "acobject.h" /* ACPI internal object */
24#include "acstruct.h" /* Common structures */
25#include "acglobal.h" /* All global variables */
26#include "achware.h" /* Hardware defines and interfaces */
27#include "acutils.h" /* Utility interfaces */
Bob Moore747ef1b2015-07-01 14:45:18 +080028#ifndef ACPI_USE_SYSTEM_CLIBRARY
29#include "acclib.h" /* C library interfaces */
30#endif /* !ACPI_USE_SYSTEM_CLIBRARY */
Bob Moore50df4d82008-12-31 03:01:23 +080031
32#endif /* __ACCOMMON_H__ */