Blame view

include/acpi/acpi.h 1.33 KB
958576388   Erik Schmauss   ACPICA: adding SP...
1
  /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
  /******************************************************************************
   *
50df4d8b0   Bob Moore   ACPICA: Restructu...
4
   * Name: acpi.h - Master public include file used to interface to ACPICA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
   *
da6f8320d   Bob Moore   ACPICA: All acpic...
6
   * Copyright (C) 2000 - 2018, Intel Corp.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   *
958576388   Erik Schmauss   ACPICA: adding SP...
8
   *****************************************************************************/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
13
  
  #ifndef __ACPI_H__
  #define __ACPI_H__
  
  /*
50df4d8b0   Bob Moore   ACPICA: Restructu...
14
15
16
17
18
19
20
   * Public include files for use by code that will interface to ACPICA.
   *
   * Information includes the ACPICA data types, names, exceptions, and
   * external interface prototypes. Also included are the definitions for
   * all ACPI tables (FADT, MADT, etc.)
   *
   * Note: The order of these include files is important.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
   */
a1ce39288   David Howells   UAPI: (Scripted) ...
22
23
24
25
26
  #include <acpi/platform/acenv.h>	/* Environment-specific items */
  #include <acpi/acnames.h>		/* Common ACPI names and strings */
  #include <acpi/actypes.h>		/* ACPICA data types and structures */
  #include <acpi/acexcep.h>		/* ACPICA exceptions */
  #include <acpi/actbl.h>		/* ACPI table definitions */
a1ce39288   David Howells   UAPI: (Scripted) ...
27
  #include <acpi/acrestyp.h>		/* Resource Descriptor structs */
d5f23fe19   Shao Ming   ACPICA: EFI/EDK2:...
28
29
  #include <acpi/platform/acenvex.h>	/* Extra environment-specific items */
  #include <acpi/acoutput.h>		/* Error output and Debug macros */
a1ce39288   David Howells   UAPI: (Scripted) ...
30
31
  #include <acpi/acpiosxf.h>		/* OSL interfaces (ACPICA-to-OS) */
  #include <acpi/acpixf.h>		/* ACPI core subsystem external interfaces */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32

4be44fcd3   Len Brown   [ACPI] Lindent al...
33
  #endif				/* __ACPI_H__ */