Blame source/include/accommon.h

Packit Service 1fb00e
/******************************************************************************
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Name: accommon.h - Common include files for generation of ACPICA source
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 __ACCOMMON_H__
Packit Service 1fb00e
#define __ACCOMMON_H__
Packit Service 1fb00e
Packit Service 1fb00e
/*
Packit Service 1fb00e
 * Common set of includes for all ACPICA source files.
Packit Service 1fb00e
 * We put them here because we don't want to duplicate them
Packit Service 1fb00e
 * in the the source code again and again.
Packit Service 1fb00e
 *
Packit Service 1fb00e
 * Note: The order of these include files is important.
Packit Service 1fb00e
 */
Packit Service 1fb00e
#include "acconfig.h"           /* Global configuration constants */
Packit Service 1fb00e
#include "acmacros.h"           /* C macros */
Packit Service 1fb00e
#include "aclocal.h"            /* Internal data types */
Packit Service 1fb00e
#include "acobject.h"           /* ACPI internal object */
Packit Service 1fb00e
#include "acstruct.h"           /* Common structures */
Packit Service 1fb00e
#include "acglobal.h"           /* All global variables */
Packit Service 1fb00e
#include "achware.h"            /* Hardware defines and interfaces */
Packit Service 1fb00e
#include "acutils.h"            /* Utility interfaces */
Packit Service 1fb00e
#ifndef ACPI_USE_SYSTEM_CLIBRARY
Packit Service 1fb00e
#include "acclib.h"             /* C library interfaces */
Packit Service 1fb00e
#endif /* !ACPI_USE_SYSTEM_CLIBRARY */
Packit Service 1fb00e
Packit Service 1fb00e
Packit Service 1fb00e
#endif /* __ACCOMMON_H__ */