diff options
Diffstat (limited to 'source/include/acmacros.h')
-rw-r--r-- | source/include/acmacros.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/include/acmacros.h b/source/include/acmacros.h index 19a3e8e235426..1212d0516b9f1 100644 --- a/source/include/acmacros.h +++ b/source/include/acmacros.h @@ -45,6 +45,8 @@ #define __ACMACROS_H__ +#pragma pack(push) /* Set default struct packing */ + /* * Extract data using a pointer. Any more than a byte and we * get into potential aligment issues -- see the STORE macros below. @@ -433,4 +435,6 @@ #define ACPI_IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7')) +#pragma pack(pop) /* Restore original struct packing */ + #endif /* ACMACROS_H */ |