Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
0002 /******************************************************************************
0003  *
0004  * Name: accommon.h - Common include files for generation of ACPICA source
0005  *
0006  * Copyright (C) 2000 - 2022, Intel Corp.
0007  *
0008  *****************************************************************************/
0009 
0010 #ifndef __ACCOMMON_H__
0011 #define __ACCOMMON_H__
0012 
0013 /*
0014  * Common set of includes for all ACPICA source files.
0015  * We put them here because we don't want to duplicate them
0016  * in the source code again and again.
0017  *
0018  * Note: The order of these include files is important.
0019  */
0020 #include <acpi/acconfig.h>  /* Global configuration constants */
0021 #include "acmacros.h"       /* C macros */
0022 #include "aclocal.h"        /* Internal data types */
0023 #include "acobject.h"       /* ACPI internal object */
0024 #include "acstruct.h"       /* Common structures */
0025 #include "acglobal.h"       /* All global variables */
0026 #include "achware.h"        /* Hardware defines and interfaces */
0027 #include "acutils.h"        /* Utility interfaces */
0028 #ifndef ACPI_USE_SYSTEM_CLIBRARY
0029 #include "acclib.h"     /* C library interfaces */
0030 #endif              /* !ACPI_USE_SYSTEM_CLIBRARY */
0031 
0032 #endif              /* __ACCOMMON_H__ */