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/amlcode.h | |
parent | 7bf0bd8c239ae7e6cb5c98382db85377146519d6 (diff) |
Notes
Diffstat (limited to 'source/include/amlcode.h')
-rw-r--r-- | source/include/amlcode.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/include/amlcode.h b/source/include/amlcode.h index bc8c0b0d3dd0..0695185e522a 100644 --- a/source/include/amlcode.h +++ b/source/include/amlcode.h @@ -46,6 +46,9 @@ #ifndef __AMLCODE_H__ #define __AMLCODE_H__ +#pragma pack(push) /* Set default struct packing */ + + /* primary opcodes */ #define AML_NULL_CHAR (UINT16) 0x00 @@ -509,4 +512,6 @@ typedef enum #define AML_METHOD_SYNC_LEVEL 0xF0 +#pragma pack(pop) /* Restore original struct packing */ + #endif /* __AMLCODE_H__ */ |