1193267Sjkim/******************************************************************************
2193267Sjkim *
3193267Sjkim * Name: accommon.h - Common include files for generation of ACPICA source
4193267Sjkim *
5193267Sjkim *****************************************************************************/
6193267Sjkim
7217365Sjkim/*
8281075Sdim * Copyright (C) 2000 - 2015, Intel Corp.
9193267Sjkim * All rights reserved.
10193267Sjkim *
11217365Sjkim * Redistribution and use in source and binary forms, with or without
12217365Sjkim * modification, are permitted provided that the following conditions
13217365Sjkim * are met:
14217365Sjkim * 1. Redistributions of source code must retain the above copyright
15217365Sjkim *    notice, this list of conditions, and the following disclaimer,
16217365Sjkim *    without modification.
17217365Sjkim * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18217365Sjkim *    substantially similar to the "NO WARRANTY" disclaimer below
19217365Sjkim *    ("Disclaimer") and any redistribution must be conditioned upon
20217365Sjkim *    including a substantially similar Disclaimer requirement for further
21217365Sjkim *    binary redistribution.
22217365Sjkim * 3. Neither the names of the above-listed copyright holders nor the names
23217365Sjkim *    of any contributors may be used to endorse or promote products derived
24217365Sjkim *    from this software without specific prior written permission.
25193267Sjkim *
26217365Sjkim * Alternatively, this software may be distributed under the terms of the
27217365Sjkim * GNU General Public License ("GPL") version 2 as published by the Free
28217365Sjkim * Software Foundation.
29193267Sjkim *
30217365Sjkim * NO WARRANTY
31217365Sjkim * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32217365Sjkim * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33217365Sjkim * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34217365Sjkim * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35217365Sjkim * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36217365Sjkim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37217365Sjkim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38217365Sjkim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39217365Sjkim * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40217365Sjkim * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41217365Sjkim * POSSIBILITY OF SUCH DAMAGES.
42217365Sjkim */
43193267Sjkim
44193267Sjkim#ifndef __ACCOMMON_H__
45193267Sjkim#define __ACCOMMON_H__
46193267Sjkim
47193267Sjkim/*
48193267Sjkim * Common set of includes for all ACPICA source files.
49193267Sjkim * We put them here because we don't want to duplicate them
50193267Sjkim * in the the source code again and again.
51193267Sjkim *
52193267Sjkim * Note: The order of these include files is important.
53193267Sjkim */
54193341Sjkim#include <contrib/dev/acpica/include/acconfig.h>           /* Global configuration constants */
55193341Sjkim#include <contrib/dev/acpica/include/acmacros.h>           /* C macros */
56193341Sjkim#include <contrib/dev/acpica/include/aclocal.h>            /* Internal data types */
57193341Sjkim#include <contrib/dev/acpica/include/acobject.h>           /* ACPI internal object */
58193341Sjkim#include <contrib/dev/acpica/include/acstruct.h>           /* Common structures */
59193341Sjkim#include <contrib/dev/acpica/include/acglobal.h>           /* All global variables */
60193341Sjkim#include <contrib/dev/acpica/include/achware.h>            /* Hardware defines and interfaces */
61193341Sjkim#include <contrib/dev/acpica/include/acutils.h>            /* Utility interfaces */
62193267Sjkim
63193267Sjkim
64193267Sjkim#endif /* __ACCOMMON_H__ */
65