acpi.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Name: acpi.h - Master include file, Publics and external data.
  4.  *       $Revision: 54 $
  5.  *
  6.  *****************************************************************************/
  7. /*
  8.  *  Copyright (C) 2000, 2001 R. Byron Moore
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #ifndef __ACPI_H__
  25. #define __ACPI_H__
  26. /*
  27.  * Common includes for all ACPI driver files
  28.  * We put them here because we don't want to duplicate them
  29.  * in the rest of the source code again and again.
  30.  */
  31. #include "acconfig.h"           /* Configuration constants */
  32. #include "platform/acenv.h"     /* Target environment specific items */
  33. #include "actypes.h"            /* Fundamental common data types */
  34. #include "acexcep.h"            /* ACPI exception codes */
  35. #include "acmacros.h"           /* C macros */
  36. #include "actbl.h"              /* ACPI table definitions */
  37. #include "aclocal.h"            /* Internal data types */
  38. #include "acoutput.h"           /* Error output and Debug macros */
  39. #include "acpiosxf.h"           /* Interfaces to the ACPI-to-OS layer*/
  40. #include "acpixf.h"             /* ACPI core subsystem external interfaces */
  41. #include "acobject.h"           /* ACPI internal object */
  42. #include "acstruct.h"           /* Common structures */
  43. #include "acglobal.h"           /* All global variables */
  44. #include "achware.h"            /* Hardware defines and interfaces */
  45. #include "acutils.h"            /* Utility interfaces */
  46. #endif /* __ACPI_H__ */