/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */1/******************************************************************************2*3* Name: acpi.h - Master public include file used to interface to ACPICA4*5* Copyright (C) 2000 - 2025, Intel Corp.6*7*****************************************************************************/89#ifndef __ACPI_H__10#define __ACPI_H__1112/*13* Public include files for use by code that will interface to ACPICA.14*15* Information includes the ACPICA data types, names, exceptions, and16* external interface prototypes. Also included are the definitions for17* all ACPI tables (FADT, MADT, etc.)18*19* Note: The order of these include files is important.20*/21#include <acpi/platform/acenv.h> /* Environment-specific items */22#include <acpi/acnames.h> /* Common ACPI names and strings */23#include <acpi/actypes.h> /* ACPICA data types and structures */24#include <acpi/acexcep.h> /* ACPICA exceptions */25#include <acpi/actbl.h> /* ACPI table definitions */26#include <acpi/acrestyp.h> /* Resource Descriptor structs */27#include <acpi/platform/acenvex.h> /* Extra environment-specific items */28#include <acpi/acoutput.h> /* Error output and Debug macros */29#include <acpi/acpiosxf.h> /* OSL interfaces (ACPICA-to-OS) */30#include <acpi/acpixf.h> /* ACPI core subsystem external interfaces */3132#endif /* __ACPI_H__ */333435