2018-03-14 23:13:07 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
2005-04-16 22:20:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2008-12-30 19:01:23 +00:00
|
|
|
* Name: acpi.h - Master public include file used to interface to ACPICA
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2020-01-10 19:31:49 +00:00
|
|
|
* Copyright (C) 2000 - 2020, Intel Corp.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2018-03-14 23:13:07 +00:00
|
|
|
*****************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifndef __ACPI_H__
|
|
|
|
#define __ACPI_H__
|
|
|
|
|
|
|
|
/*
|
2008-12-30 19:01:23 +00:00
|
|
|
* Public include files for use by code that will interface to ACPICA.
|
|
|
|
*
|
|
|
|
* Information includes the ACPICA data types, names, exceptions, and
|
|
|
|
* external interface prototypes. Also included are the definitions for
|
|
|
|
* all ACPI tables (FADT, MADT, etc.)
|
|
|
|
*
|
|
|
|
* Note: The order of these include files is important.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2012-10-02 17:01:25 +00:00
|
|
|
#include <acpi/platform/acenv.h> /* Environment-specific items */
|
|
|
|
#include <acpi/acnames.h> /* Common ACPI names and strings */
|
|
|
|
#include <acpi/actypes.h> /* ACPICA data types and structures */
|
|
|
|
#include <acpi/acexcep.h> /* ACPICA exceptions */
|
|
|
|
#include <acpi/actbl.h> /* ACPI table definitions */
|
|
|
|
#include <acpi/acrestyp.h> /* Resource Descriptor structs */
|
2017-08-03 06:26:44 +00:00
|
|
|
#include <acpi/platform/acenvex.h> /* Extra environment-specific items */
|
|
|
|
#include <acpi/acoutput.h> /* Error output and Debug macros */
|
2012-10-02 17:01:25 +00:00
|
|
|
#include <acpi/acpiosxf.h> /* OSL interfaces (ACPICA-to-OS) */
|
|
|
|
#include <acpi/acpixf.h> /* ACPI core subsystem external interfaces */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
#endif /* __ACPI_H__ */
|