summaryrefslogtreecommitdiff
path: root/source/include/acstruct.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/acstruct.h')
-rw-r--r--source/include/acstruct.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/include/acstruct.h b/source/include/acstruct.h
index 5d2f4a06e8e0..c52db8f4e177 100644
--- a/source/include/acstruct.h
+++ b/source/include/acstruct.h
@@ -44,6 +44,9 @@
#ifndef __ACSTRUCT_H__
#define __ACSTRUCT_H__
+
+#pragma pack(push) /* Set default struct packing */
+
/* acpisrc:StructDefs -- for acpisrc conversion */
/*****************************************************************************
@@ -139,6 +142,9 @@ typedef struct acpi_init_walk_info
UINT32 TableIndex;
UINT32 ObjectCount;
UINT32 MethodCount;
+ UINT32 SerialMethodCount;
+ UINT32 NonSerialMethodCount;
+ UINT32 SerializedMethodCount;
UINT32 DeviceCount;
UINT32 OpRegionCount;
UINT32 FieldCount;
@@ -267,4 +273,6 @@ typedef struct acpi_walk_info
#define ACPI_DISPLAY_SHORT (UINT8) 2
+#pragma pack(pop) /* Restore original struct packing */
+
#endif