aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acpiosxf.h
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2014-02-25 21:28:32 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-02-26 18:45:59 -0500
commit4ac4c5fad8a320f75cb84543403fb8bae5ad2254 (patch)
tree93b6c6a9dbc086412a1c2603cd5b47cc4d322e1f /include/acpi/acpiosxf.h
parent4dde507fc1984435f28862ddd1beb90822aa116c (diff)
ACPICA: Headers: Deploy #pragma pack (push) and (pop).
Use push and pop to both guarantee that the correct alignment is used, and to restore the alignment to whatever it was before the header was included. It is reported that the #pragma pack(push/pop) directives are not supported by the specific GCCs, but this patch still doesn't affect kernel build as there are already #pragma pack([1]) directives used in the old ACPICA headers, which means there shouldn't be GCCs that are currently used to compile the ACPI kernels do not support #pragma pack() directives. References: https://bugs.acpica.org/show_bug.cgi?id=1058 Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/acpi/acpiosxf.h')
-rw-r--r--include/acpi/acpiosxf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/acpi/acpiosxf.h b/include/acpi/acpiosxf.h
index f6f5f8af2112..a4a2cd39aea9 100644
--- a/include/acpi/acpiosxf.h
+++ b/include/acpi/acpiosxf.h
@@ -49,6 +49,8 @@
49#include <acpi/platform/acenv.h> 49#include <acpi/platform/acenv.h>
50#include <acpi/actypes.h> 50#include <acpi/actypes.h>
51 51
52#pragma pack(push) /* Set default struct packing */
53
52/* Types for acpi_os_execute */ 54/* Types for acpi_os_execute */
53 55
54typedef enum { 56typedef enum {
@@ -399,4 +401,6 @@ char *acpi_os_get_next_filename(void *dir_handle);
399void acpi_os_close_directory(void *dir_handle); 401void acpi_os_close_directory(void *dir_handle);
400#endif 402#endif
401 403
404#pragma pack(pop) /* Restore original struct packing */
405
402#endif /* __ACPIOSXF_H__ */ 406#endif /* __ACPIOSXF_H__ */