diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2014-02-17 17:10:41 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2014-02-17 17:10:41 +0000 |
commit | 526d99544ba42a5a2155021975b3b97da425819e (patch) | |
tree | f33eb960cbd87cb5fa516e45153eb6351dc8ea2e /source/include/acstruct.h | |
parent | 7bf0bd8c239ae7e6cb5c98382db85377146519d6 (diff) |
Notes
Diffstat (limited to 'source/include/acstruct.h')
-rw-r--r-- | source/include/acstruct.h | 8 |
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 |