Blame source/include/acpi.h

Packit Service 1fb00e
/******************************************************************************
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Name: acpi.h - Master public include file used to interface to ACPICA
Packit Service 1fb00e
 *
Packit Service 1fb00e
 *****************************************************************************/
Packit Service 1fb00e
Packit Service 1fb00e
/*
Packit Service 1fb00e
 * Copyright (C) 2000 - 2018, Intel Corp.
Packit Service 1fb00e
 * All rights reserved.
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Redistribution and use in source and binary forms, with or without
Packit Service 1fb00e
 * modification, are permitted provided that the following conditions
Packit Service 1fb00e
 * are met:
Packit Service 1fb00e
 * 1. Redistributions of source code must retain the above copyright
Packit Service 1fb00e
 *    notice, this list of conditions, and the following disclaimer,
Packit Service 1fb00e
 *    without modification.
Packit Service 1fb00e
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
Packit Service 1fb00e
 *    substantially similar to the "NO WARRANTY" disclaimer below
Packit Service 1fb00e
 *    ("Disclaimer") and any redistribution must be conditioned upon
Packit Service 1fb00e
 *    including a substantially similar Disclaimer requirement for further
Packit Service 1fb00e
 *    binary redistribution.
Packit Service 1fb00e
 * 3. Neither the names of the above-listed copyright holders nor the names
Packit Service 1fb00e
 *    of any contributors may be used to endorse or promote products derived
Packit Service 1fb00e
 *    from this software without specific prior written permission.
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Alternatively, this software may be distributed under the terms of the
Packit Service 1fb00e
 * GNU General Public License ("GPL") version 2 as published by the Free
Packit Service 1fb00e
 * Software Foundation.
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * NO WARRANTY
Packit Service 1fb00e
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit Service 1fb00e
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit Service 1fb00e
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
Packit Service 1fb00e
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit Service 1fb00e
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit Service 1fb00e
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit Service 1fb00e
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit Service 1fb00e
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
Packit Service 1fb00e
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
Packit Service 1fb00e
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit Service 1fb00e
 * POSSIBILITY OF SUCH DAMAGES.
Packit Service 1fb00e
 */
Packit Service 1fb00e
Packit Service 1fb00e
#ifndef __ACPI_H__
Packit Service 1fb00e
#define __ACPI_H__
Packit Service 1fb00e
Packit Service 1fb00e
/*
Packit Service 1fb00e
 * Public include files for use by code that will interface to ACPICA.
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Information includes the ACPICA data types, names, exceptions, and
Packit Service 1fb00e
 * external interface prototypes. Also included are the definitions for
Packit Service 1fb00e
 * all ACPI tables (FADT, MADT, etc.)
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Note: The order of these include files is important.
Packit Service 1fb00e
 */
Packit Service 1fb00e
#include "platform/acenv.h"     /* Environment-specific items */
Packit Service 1fb00e
#include "actypes.h"            /* ACPICA data types and structures */
Packit Service 1fb00e
#include "platform/acenvex.h"   /* Extra environment-specific items */
Packit Service 1fb00e
#include "acnames.h"            /* Common ACPI names and strings */
Packit Service 1fb00e
#include "acexcep.h"            /* ACPICA exceptions */
Packit Service 1fb00e
#include "actbl.h"              /* ACPI table definitions */
Packit Service 1fb00e
#include "acoutput.h"           /* Error output and Debug macros */
Packit Service 1fb00e
#include "acrestyp.h"           /* Resource Descriptor structs */
Packit Service 1fb00e
#include "acpiosxf.h"           /* OSL interfaces (ACPICA-to-OS) */
Packit Service 1fb00e
#include "acpixf.h"             /* ACPI core subsystem external interfaces */
Packit Service 1fb00e
Packit Service 1fb00e
#endif /* __ACPI_H__ */