1a9f12690SJung-uk Kim /****************************************************************************** 2a9f12690SJung-uk Kim * 3a9f12690SJung-uk Kim * Name: accommon.h - Common include files for generation of ACPICA source 4a9f12690SJung-uk Kim * 5a9f12690SJung-uk Kim *****************************************************************************/ 6a9f12690SJung-uk Kim 7*d244b227SJung-uk Kim /* 8*d244b227SJung-uk Kim * Copyright (C) 2000 - 2011, Intel Corp. 9a9f12690SJung-uk Kim * All rights reserved. 10a9f12690SJung-uk Kim * 11*d244b227SJung-uk Kim * Redistribution and use in source and binary forms, with or without 12*d244b227SJung-uk Kim * modification, are permitted provided that the following conditions 13*d244b227SJung-uk Kim * are met: 14*d244b227SJung-uk Kim * 1. Redistributions of source code must retain the above copyright 15*d244b227SJung-uk Kim * notice, this list of conditions, and the following disclaimer, 16*d244b227SJung-uk Kim * without modification. 17*d244b227SJung-uk Kim * 2. Redistributions in binary form must reproduce at minimum a disclaimer 18*d244b227SJung-uk Kim * substantially similar to the "NO WARRANTY" disclaimer below 19*d244b227SJung-uk Kim * ("Disclaimer") and any redistribution must be conditioned upon 20*d244b227SJung-uk Kim * including a substantially similar Disclaimer requirement for further 21*d244b227SJung-uk Kim * binary redistribution. 22*d244b227SJung-uk Kim * 3. Neither the names of the above-listed copyright holders nor the names 23*d244b227SJung-uk Kim * of any contributors may be used to endorse or promote products derived 24*d244b227SJung-uk Kim * from this software without specific prior written permission. 25a9f12690SJung-uk Kim * 26*d244b227SJung-uk Kim * Alternatively, this software may be distributed under the terms of the 27*d244b227SJung-uk Kim * GNU General Public License ("GPL") version 2 as published by the Free 28*d244b227SJung-uk Kim * Software Foundation. 29a9f12690SJung-uk Kim * 30*d244b227SJung-uk Kim * NO WARRANTY 31*d244b227SJung-uk Kim * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 32*d244b227SJung-uk Kim * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 33*d244b227SJung-uk Kim * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 34*d244b227SJung-uk Kim * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 35*d244b227SJung-uk Kim * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 36*d244b227SJung-uk Kim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 37*d244b227SJung-uk Kim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38*d244b227SJung-uk Kim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 39*d244b227SJung-uk Kim * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 40*d244b227SJung-uk Kim * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 41*d244b227SJung-uk Kim * POSSIBILITY OF SUCH DAMAGES. 42*d244b227SJung-uk Kim */ 43a9f12690SJung-uk Kim 44a9f12690SJung-uk Kim #ifndef __ACCOMMON_H__ 45a9f12690SJung-uk Kim #define __ACCOMMON_H__ 46a9f12690SJung-uk Kim 47a9f12690SJung-uk Kim /* 48a9f12690SJung-uk Kim * Common set of includes for all ACPICA source files. 49a9f12690SJung-uk Kim * We put them here because we don't want to duplicate them 50a9f12690SJung-uk Kim * in the the source code again and again. 51a9f12690SJung-uk Kim * 52a9f12690SJung-uk Kim * Note: The order of these include files is important. 53a9f12690SJung-uk Kim */ 54ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acconfig.h> /* Global configuration constants */ 55ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acmacros.h> /* C macros */ 56ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/aclocal.h> /* Internal data types */ 57ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acobject.h> /* ACPI internal object */ 58ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acstruct.h> /* Common structures */ 59ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acglobal.h> /* All global variables */ 60ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/achware.h> /* Hardware defines and interfaces */ 61ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acutils.h> /* Utility interfaces */ 62a9f12690SJung-uk Kim 63a9f12690SJung-uk Kim 64a9f12690SJung-uk Kim #endif /* __ACCOMMON_H__ */ 65