diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-08-06 17:28:40 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-08-06 17:28:40 +0000 |
commit | 32e234a854ae3097bb902cf421f91f9c7d24b291 (patch) | |
tree | 26cd13498e685dfeec2b6cd294c939d71073fba3 /include/aclocal.h | |
parent | 6d31afa8e3ab79bfa6c97c341af73f4fc093351a (diff) |
Import ACPICA 20100806.vendor/acpica/20100806
Notes
Notes:
svn path=/vendor-sys/acpica/dist/; revision=210944
svn path=/vendor-sys/acpica/20100806/; revision=210945; tag=vendor/acpica/20100806
Diffstat (limited to 'include/aclocal.h')
-rw-r--r-- | include/aclocal.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/include/aclocal.h b/include/aclocal.h index 9609aedfca61..39b6616d66c6 100644 --- a/include/aclocal.h +++ b/include/aclocal.h @@ -1142,11 +1142,16 @@ typedef struct acpi_bit_register_info typedef struct acpi_interface_info { - char *Name; - UINT8 Value; + char *Name; + struct acpi_interface_info *Next; + UINT8 Flags; + UINT8 Value; } ACPI_INTERFACE_INFO; +#define ACPI_OSI_INVALID 0x01 +#define ACPI_OSI_DYNAMIC 0x02 + typedef struct acpi_port_info { char *Name; @@ -1246,6 +1251,14 @@ typedef struct acpi_external_list #define ACPI_IPATH_ALLOCATED 0x01 +typedef struct acpi_external_file +{ + char *Path; + struct acpi_external_file *Next; + +} ACPI_EXTERNAL_FILE; + + /***************************************************************************** * * Debugger |