|
@@ -44,6 +44,8 @@
|
|
|
#ifndef __ACBUFFER_H__
|
|
|
#define __ACBUFFER_H__
|
|
|
|
|
|
+#pragma pack(push) /* Set default struct packing */
|
|
|
+
|
|
|
/*
|
|
|
* Contains buffer structures for these predefined names:
|
|
|
* _FDE, _GRT, _GTM, _PLD, _SRT
|
|
@@ -232,4 +234,6 @@ struct acpi_pld_info {
|
|
|
#define ACPI_PLD_GET_HORIZ_OFFSET(dword) ACPI_GET_BITS (dword, 16, ACPI_16BIT_MASK)
|
|
|
#define ACPI_PLD_SET_HORIZ_OFFSET(dword,value) ACPI_SET_BITS (dword, 16, ACPI_16BIT_MASK, value) /* Offset 128+16=144, Len 16 */
|
|
|
|
|
|
+#pragma pack(pop) /* Restore original struct packing */
|
|
|
+
|
|
|
#endif /* ACBUFFER_H */
|