summaryrefslogtreecommitdiff
path: root/source/include/acpixf.h
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2014-02-17 17:10:41 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2014-02-17 17:10:41 +0000
commit526d99544ba42a5a2155021975b3b97da425819e (patch)
treef33eb960cbd87cb5fa516e45153eb6351dc8ea2e /source/include/acpixf.h
parent7bf0bd8c239ae7e6cb5c98382db85377146519d6 (diff)
Notes
Diffstat (limited to 'source/include/acpixf.h')
-rw-r--r--source/include/acpixf.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/include/acpixf.h b/source/include/acpixf.h
index d168353d14b65..a88491f50396f 100644
--- a/source/include/acpixf.h
+++ b/source/include/acpixf.h
@@ -47,13 +47,15 @@
/* Current ACPICA subsystem version in YYYYMMDD format */
-#define ACPI_CA_VERSION 0x20140114
+#define ACPI_CA_VERSION 0x20140214
#include "acconfig.h"
#include "actypes.h"
#include "actbl.h"
#include "acbuffer.h"
+#pragma pack(push) /* Set default struct packing */
+
/*
* Globals that are publically available
*/
@@ -70,7 +72,7 @@ extern UINT32 AcpiDbgLayer;
/* ACPICA runtime options */
-extern UINT8 AcpiGbl_AllMethodsSerialized;
+extern UINT8 AcpiGbl_AutoSerializeMethods;
extern UINT8 AcpiGbl_CopyDsdtLocally;
extern UINT8 AcpiGbl_CreateOsiMethod;
extern UINT8 AcpiGbl_DisableAutoRepair;
@@ -831,4 +833,6 @@ AcpiDebugPrintRaw (
...);
#endif
+#pragma pack(pop) /* Restore original struct packing */
+
#endif /* __ACXFACE_H__ */