Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */ |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | * |
| 4 | * Name: accommon.h - Common include files for generation of ACPICA source |
| 5 | * |
Bob Moore | da6f832 | 2018-01-04 10:06:38 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2018, Intel Corp. |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 8 | *****************************************************************************/ |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 9 | |
| 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 Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 20 | #include <acpi/acconfig.h> /* Global configuration constants */ |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 21 | #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 Moore | 747ef1b | 2015-07-01 14:45:18 +0800 | [diff] [blame] | 28 | #ifndef ACPI_USE_SYSTEM_CLIBRARY |
| 29 | #include "acclib.h" /* C library interfaces */ |
| 30 | #endif /* !ACPI_USE_SYSTEM_CLIBRARY */ |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 31 | |
| 32 | #endif /* __ACCOMMON_H__ */ |