summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/include/aclocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/include/aclocal.h')
-rw-r--r--sys/contrib/dev/acpica/include/aclocal.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/include/aclocal.h b/sys/contrib/dev/acpica/include/aclocal.h
index 9609aed..39b6616 100644
--- a/sys/contrib/dev/acpica/include/aclocal.h
+++ b/sys/contrib/dev/acpica/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
OpenPOWER on IntegriCloud