aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2014-03-05 01:12:01 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-03-17 20:53:45 -0400
commit6e596084833b95662dfe90e1f30d83ccbd64575c (patch)
treeca9530e294d057788b551be667f26dbb07b4277e /drivers/acpi/acpica
parentbcef50814c9de8e0672d3e7f9f1abd85e1b95d13 (diff)
ACPICA: Revert "Headers: Deploy #pragma pack (push) and (pop)."
This reverts commit aae576e5faefa8ba70647efa320d4747b6375f1e. Push and Pop are not portable "enough", and caused problems for some ACPICA customers. Signed-off-by: Robert 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 'drivers/acpi/acpica')
-rw-r--r--drivers/acpi/acpica/acdebug.h4
-rw-r--r--drivers/acpi/acpica/acdispat.h4
-rw-r--r--drivers/acpi/acpica/acevents.h3
-rw-r--r--drivers/acpi/acpica/acglobal.h4
-rw-r--r--drivers/acpi/acpica/achware.h4
-rw-r--r--drivers/acpi/acpica/acinterp.h4
-rw-r--r--drivers/acpi/acpica/aclocal.h4
-rw-r--r--drivers/acpi/acpica/acmacros.h4
-rw-r--r--drivers/acpi/acpica/acnamesp.h4
-rw-r--r--drivers/acpi/acpica/acobject.h4
-rw-r--r--drivers/acpi/acpica/acparser.h4
-rw-r--r--drivers/acpi/acpica/acpredef.h4
-rw-r--r--drivers/acpi/acpica/acresrc.h4
-rw-r--r--drivers/acpi/acpica/acstruct.h4
-rw-r--r--drivers/acpi/acpica/actables.h4
-rw-r--r--drivers/acpi/acpica/acutils.h4
-rw-r--r--drivers/acpi/acpica/amlcode.h4
-rw-r--r--drivers/acpi/acpica/amlresrc.h4
18 files changed, 1 insertions, 70 deletions
diff --git a/drivers/acpi/acpica/acdebug.h b/drivers/acpi/acpica/acdebug.h
index e9ab514a96c8..68a91eb0fa48 100644
--- a/drivers/acpi/acpica/acdebug.h
+++ b/drivers/acpi/acpica/acdebug.h
@@ -44,8 +44,6 @@
44#ifndef __ACDEBUG_H__ 44#ifndef __ACDEBUG_H__
45#define __ACDEBUG_H__ 45#define __ACDEBUG_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49#define ACPI_DEBUG_BUFFER_SIZE 0x4000 /* 16K buffer for return objects */ 47#define ACPI_DEBUG_BUFFER_SIZE 0x4000 /* 16K buffer for return objects */
50 48
51struct acpi_db_command_info { 49struct acpi_db_command_info {
@@ -284,6 +282,4 @@ struct acpi_namespace_node *acpi_db_local_ns_lookup(char *name);
284 282
285void acpi_db_uint32_to_hex_string(u32 value, char *buffer); 283void acpi_db_uint32_to_hex_string(u32 value, char *buffer);
286 284
287#pragma pack(pop) /* Restore original struct packing */
288
289#endif /* __ACDEBUG_H__ */ 285#endif /* __ACDEBUG_H__ */
diff --git a/drivers/acpi/acpica/acdispat.h b/drivers/acpi/acpica/acdispat.h
index 53b6dd679ffa..5b472c43c31d 100644
--- a/drivers/acpi/acpica/acdispat.h
+++ b/drivers/acpi/acpica/acdispat.h
@@ -44,8 +44,6 @@
44#ifndef _ACDISPAT_H_ 44#ifndef _ACDISPAT_H_
45#define _ACDISPAT_H_ 45#define _ACDISPAT_H_
46 46
47#pragma pack(push) /* Set default struct packing */
48
49#define NAMEOF_LOCAL_NTE "__L0" 47#define NAMEOF_LOCAL_NTE "__L0"
50#define NAMEOF_ARG_NTE "__A0" 48#define NAMEOF_ARG_NTE "__A0"
51 49
@@ -353,6 +351,4 @@ acpi_status
353acpi_ds_result_push(union acpi_operand_object *object, 351acpi_ds_result_push(union acpi_operand_object *object,
354 struct acpi_walk_state *walk_state); 352 struct acpi_walk_state *walk_state);
355 353
356#pragma pack(pop) /* Restore original struct packing */
357
358#endif /* _ACDISPAT_H_ */ 354#endif /* _ACDISPAT_H_ */
diff --git a/drivers/acpi/acpica/acevents.h b/drivers/acpi/acpica/acevents.h
index 75f25eda3a6a..68ec61fff188 100644
--- a/drivers/acpi/acpica/acevents.h
+++ b/drivers/acpi/acpica/acevents.h
@@ -44,8 +44,6 @@
44#ifndef __ACEVENTS_H__ 44#ifndef __ACEVENTS_H__
45#define __ACEVENTS_H__ 45#define __ACEVENTS_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* 47/*
50 * evevent 48 * evevent
51 */ 49 */
@@ -253,5 +251,4 @@ u32 acpi_ev_install_sci_handler(void);
253acpi_status acpi_ev_remove_all_sci_handlers(void); 251acpi_status acpi_ev_remove_all_sci_handlers(void);
254 252
255ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_ev_terminate(void)) 253ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_ev_terminate(void))
256#pragma pack(pop) /* Restore original struct packing */
257#endif /* __ACEVENTS_H__ */ 254#endif /* __ACEVENTS_H__ */
diff --git a/drivers/acpi/acpica/acglobal.h b/drivers/acpi/acpica/acglobal.h
index 7cc7ffef04d2..8f40bb972ae3 100644
--- a/drivers/acpi/acpica/acglobal.h
+++ b/drivers/acpi/acpica/acglobal.h
@@ -44,8 +44,6 @@
44#ifndef __ACGLOBAL_H__ 44#ifndef __ACGLOBAL_H__
45#define __ACGLOBAL_H__ 45#define __ACGLOBAL_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* 47/*
50 * Ensure that the globals are actually defined and initialized only once. 48 * Ensure that the globals are actually defined and initialized only once.
51 * 49 *
@@ -511,6 +509,4 @@ ACPI_INIT_GLOBAL(ACPI_FILE, acpi_gbl_debug_file, NULL);
511 509
512extern const struct ah_predefined_name asl_predefined_info[]; 510extern const struct ah_predefined_name asl_predefined_info[];
513 511
514#pragma pack(pop) /* Restore original struct packing */
515
516#endif /* __ACGLOBAL_H__ */ 512#endif /* __ACGLOBAL_H__ */
diff --git a/drivers/acpi/acpica/achware.h b/drivers/acpi/acpica/achware.h
index 4a0e63457881..2ad2351a9833 100644
--- a/drivers/acpi/acpica/achware.h
+++ b/drivers/acpi/acpica/achware.h
@@ -44,8 +44,6 @@
44#ifndef __ACHWARE_H__ 44#ifndef __ACHWARE_H__
45#define __ACHWARE_H__ 45#define __ACHWARE_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* Values for the _SST predefined method */ 47/* Values for the _SST predefined method */
50 48
51#define ACPI_SST_INDICATOR_OFF 0 49#define ACPI_SST_INDICATOR_OFF 0
@@ -149,6 +147,4 @@ acpi_status
149acpi_hw_derive_pci_id(struct acpi_pci_id *pci_id, 147acpi_hw_derive_pci_id(struct acpi_pci_id *pci_id,
150 acpi_handle root_pci_device, acpi_handle pci_region); 148 acpi_handle root_pci_device, acpi_handle pci_region);
151 149
152#pragma pack(pop) /* Restore original struct packing */
153
154#endif /* __ACHWARE_H__ */ 150#endif /* __ACHWARE_H__ */
diff --git a/drivers/acpi/acpica/acinterp.h b/drivers/acpi/acpica/acinterp.h
index fc222d69e2ab..c54267748be5 100644
--- a/drivers/acpi/acpica/acinterp.h
+++ b/drivers/acpi/acpica/acinterp.h
@@ -44,8 +44,6 @@
44#ifndef __ACINTERP_H__ 44#ifndef __ACINTERP_H__
45#define __ACINTERP_H__ 45#define __ACINTERP_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49#define ACPI_WALK_OPERANDS (&(walk_state->operands [walk_state->num_operands -1])) 47#define ACPI_WALK_OPERANDS (&(walk_state->operands [walk_state->num_operands -1]))
50 48
51/* Macros for tables used for debug output */ 49/* Macros for tables used for debug output */
@@ -537,6 +535,4 @@ acpi_ex_data_table_space_handler(u32 function,
537 u64 *value, 535 u64 *value,
538 void *handler_context, void *region_context); 536 void *handler_context, void *region_context);
539 537
540#pragma pack(pop) /* Restore original struct packing */
541
542#endif /* __INTERP_H__ */ 538#endif /* __INTERP_H__ */
diff --git a/drivers/acpi/acpica/aclocal.h b/drivers/acpi/acpica/aclocal.h
index fee53b50399b..52a21dafb540 100644
--- a/drivers/acpi/acpica/aclocal.h
+++ b/drivers/acpi/acpica/aclocal.h
@@ -44,8 +44,6 @@
44#ifndef __ACLOCAL_H__ 44#ifndef __ACLOCAL_H__
45#define __ACLOCAL_H__ 45#define __ACLOCAL_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* acpisrc:struct_defs -- for acpisrc conversion */ 47/* acpisrc:struct_defs -- for acpisrc conversion */
50 48
51#define ACPI_SERIALIZED 0xFF 49#define ACPI_SERIALIZED 0xFF
@@ -1149,6 +1147,4 @@ struct ah_predefined_name {
1149#endif 1147#endif
1150}; 1148};
1151 1149
1152#pragma pack(pop) /* Restore original struct packing */
1153
1154#endif /* __ACLOCAL_H__ */ 1150#endif /* __ACLOCAL_H__ */
diff --git a/drivers/acpi/acpica/acmacros.h b/drivers/acpi/acpica/acmacros.h
index 9b0ce226bf5d..4bceb11c7380 100644
--- a/drivers/acpi/acpica/acmacros.h
+++ b/drivers/acpi/acpica/acmacros.h
@@ -44,8 +44,6 @@
44#ifndef __ACMACROS_H__ 44#ifndef __ACMACROS_H__
45#define __ACMACROS_H__ 45#define __ACMACROS_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* 47/*
50 * Extract data using a pointer. Any more than a byte and we 48 * Extract data using a pointer. Any more than a byte and we
51 * get into potential aligment issues -- see the STORE macros below. 49 * get into potential aligment issues -- see the STORE macros below.
@@ -429,6 +427,4 @@
429 427
430#define ACPI_IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7')) 428#define ACPI_IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7'))
431 429
432#pragma pack(pop) /* Restore original struct packing */
433
434#endif /* ACMACROS_H */ 430#endif /* ACMACROS_H */
diff --git a/drivers/acpi/acpica/acnamesp.h b/drivers/acpi/acpica/acnamesp.h
index 751083dd7793..ee1c040f321c 100644
--- a/drivers/acpi/acpica/acnamesp.h
+++ b/drivers/acpi/acpica/acnamesp.h
@@ -44,8 +44,6 @@
44#ifndef __ACNAMESP_H__ 44#ifndef __ACNAMESP_H__
45#define __ACNAMESP_H__ 45#define __ACNAMESP_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* To search the entire name space, pass this as search_base */ 47/* To search the entire name space, pass this as search_base */
50 48
51#define ACPI_NS_ALL ((acpi_handle)0) 49#define ACPI_NS_ALL ((acpi_handle)0)
@@ -406,6 +404,4 @@ struct acpi_namespace_node *acpi_ns_validate_handle(acpi_handle handle);
406 404
407void acpi_ns_terminate(void); 405void acpi_ns_terminate(void);
408 406
409#pragma pack(pop) /* Restore original struct packing */
410
411#endif /* __ACNAMESP_H__ */ 407#endif /* __ACNAMESP_H__ */
diff --git a/drivers/acpi/acpica/acobject.h b/drivers/acpi/acpica/acobject.h
index 7ce7e9f1a040..1a4d61805ebc 100644
--- a/drivers/acpi/acpica/acobject.h
+++ b/drivers/acpi/acpica/acobject.h
@@ -44,8 +44,6 @@
44#ifndef _ACOBJECT_H 44#ifndef _ACOBJECT_H
45#define _ACOBJECT_H 45#define _ACOBJECT_H
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* acpisrc:struct_defs -- for acpisrc conversion */ 47/* acpisrc:struct_defs -- for acpisrc conversion */
50 48
51/* 49/*
@@ -458,6 +456,6 @@ union acpi_descriptor {
458 union acpi_parse_object op; 456 union acpi_parse_object op;
459}; 457};
460 458
461#pragma pack(pop) /* Restore original struct packing */ 459#pragma pack()
462 460
463#endif /* _ACOBJECT_H */ 461#endif /* _ACOBJECT_H */
diff --git a/drivers/acpi/acpica/acparser.h b/drivers/acpi/acpica/acparser.h
index 3d828be9dc20..6168b85463ed 100644
--- a/drivers/acpi/acpica/acparser.h
+++ b/drivers/acpi/acpica/acparser.h
@@ -44,8 +44,6 @@
44#ifndef __ACPARSER_H__ 44#ifndef __ACPARSER_H__
45#define __ACPARSER_H__ 45#define __ACPARSER_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49#define OP_HAS_RETURN_VALUE 1 47#define OP_HAS_RETURN_VALUE 1
50 48
51/* Variable number of arguments. This field must be 32 bits */ 49/* Variable number of arguments. This field must be 32 bits */
@@ -253,6 +251,4 @@ acpi_ps_sprint_op(char *buffer_start,
253 251
254void acpi_ps_show(union acpi_parse_object *op); 252void acpi_ps_show(union acpi_parse_object *op);
255 253
256#pragma pack(pop) /* Restore original struct packing */
257
258#endif /* __ACPARSER_H__ */ 254#endif /* __ACPARSER_H__ */
diff --git a/drivers/acpi/acpica/acpredef.h b/drivers/acpi/acpica/acpredef.h
index 08c359f8a666..a48d713e9599 100644
--- a/drivers/acpi/acpica/acpredef.h
+++ b/drivers/acpi/acpica/acpredef.h
@@ -44,8 +44,6 @@
44#ifndef __ACPREDEF_H__ 44#ifndef __ACPREDEF_H__
45#define __ACPREDEF_H__ 45#define __ACPREDEF_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/****************************************************************************** 47/******************************************************************************
50 * 48 *
51 * Return Package types 49 * Return Package types
@@ -1088,6 +1086,4 @@ static const union acpi_predefined_info acpi_gbl_scope_names[] = {
1088extern const union acpi_predefined_info acpi_gbl_resource_names[]; 1086extern const union acpi_predefined_info acpi_gbl_resource_names[];
1089#endif 1087#endif
1090 1088
1091#pragma pack(pop) /* Restore original struct packing */
1092
1093#endif 1089#endif
diff --git a/drivers/acpi/acpica/acresrc.h b/drivers/acpi/acpica/acresrc.h
index be16da2d9f3d..4b008e8884a1 100644
--- a/drivers/acpi/acpica/acresrc.h
+++ b/drivers/acpi/acpica/acresrc.h
@@ -48,8 +48,6 @@
48 48
49#include "amlresrc.h" 49#include "amlresrc.h"
50 50
51#pragma pack(push) /* Set default struct packing */
52
53/* 51/*
54 * If possible, pack the following structures to byte alignment, since we 52 * If possible, pack the following structures to byte alignment, since we
55 * don't care about performance for debug output. Two cases where we cannot 53 * don't care about performance for debug output. Two cases where we cannot
@@ -380,6 +378,4 @@ extern struct acpi_rsdump_info acpi_rs_dump_uart_serial_bus[];
380extern struct acpi_rsdump_info acpi_rs_dump_general_flags[]; 378extern struct acpi_rsdump_info acpi_rs_dump_general_flags[];
381#endif 379#endif
382 380
383#pragma pack(pop) /* Restore original struct packing */
384
385#endif /* __ACRESRC_H__ */ 381#endif /* __ACRESRC_H__ */
diff --git a/drivers/acpi/acpica/acstruct.h b/drivers/acpi/acpica/acstruct.h
index 5a3fa0ddc1bc..5d2989a1b68c 100644
--- a/drivers/acpi/acpica/acstruct.h
+++ b/drivers/acpi/acpica/acstruct.h
@@ -44,8 +44,6 @@
44#ifndef __ACSTRUCT_H__ 44#ifndef __ACSTRUCT_H__
45#define __ACSTRUCT_H__ 45#define __ACSTRUCT_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49/* acpisrc:struct_defs -- for acpisrc conversion */ 47/* acpisrc:struct_defs -- for acpisrc conversion */
50 48
51/***************************************************************************** 49/*****************************************************************************
@@ -243,6 +241,4 @@ struct acpi_walk_info {
243 241
244#define ACPI_DISPLAY_SHORT (u8) 2 242#define ACPI_DISPLAY_SHORT (u8) 2
245 243
246#pragma pack(pop) /* Restore original struct packing */
247
248#endif 244#endif
diff --git a/drivers/acpi/acpica/actables.h b/drivers/acpi/acpica/actables.h
index 9b0f9846e014..5fa4b2027697 100644
--- a/drivers/acpi/acpica/actables.h
+++ b/drivers/acpi/acpica/actables.h
@@ -44,8 +44,6 @@
44#ifndef __ACTABLES_H__ 44#ifndef __ACTABLES_H__
45#define __ACTABLES_H__ 45#define __ACTABLES_H__
46 46
47#pragma pack(push) /* Set default struct packing */
48
49acpi_status acpi_allocate_root_table(u32 initial_table_count); 47acpi_status acpi_allocate_root_table(u32 initial_table_count);
50 48
51/* 49/*
@@ -131,6 +129,4 @@ acpi_tb_install_table(acpi_physical_address address,
131 129
132acpi_status acpi_tb_parse_root_table(acpi_physical_address rsdp_address); 130acpi_status acpi_tb_parse_root_table(acpi_physical_address rsdp_address);
133 131
134#pragma pack(pop) /* Restore original struct packing */
135
136#endif /* __ACTABLES_H__ */ 132#endif /* __ACTABLES_H__ */
diff --git a/drivers/acpi/acpica/acutils.h b/drivers/acpi/acpica/acutils.h
index df970ffb7356..ceeec0b7ccb1 100644
--- a/drivers/acpi/acpica/acutils.h
+++ b/drivers/acpi/acpica/acutils.h
@@ -44,8 +44,6 @@
44#ifndef _ACUTILS_H 44#ifndef _ACUTILS_H
45#define _ACUTILS_H 45#define _ACUTILS_H
46 46
47#pragma pack(push) /* Set default struct packing */
48
49extern const u8 acpi_gbl_resource_aml_sizes[]; 47extern const u8 acpi_gbl_resource_aml_sizes[];
50extern const u8 acpi_gbl_resource_aml_serial_bus_sizes[]; 48extern const u8 acpi_gbl_resource_aml_serial_bus_sizes[];
51 49
@@ -739,6 +737,4 @@ acpi_ut_method_error(const char *module_name,
739 struct acpi_namespace_node *node, 737 struct acpi_namespace_node *node,
740 const char *path, acpi_status lookup_status); 738 const char *path, acpi_status lookup_status);
741 739
742#pragma pack(pop) /* Restore original struct packing */
743
744#endif /* _ACUTILS_H */ 740#endif /* _ACUTILS_H */
diff --git a/drivers/acpi/acpica/amlcode.h b/drivers/acpi/acpica/amlcode.h
index 2db27109d70e..5908ccec6aea 100644
--- a/drivers/acpi/acpica/amlcode.h
+++ b/drivers/acpi/acpica/amlcode.h
@@ -46,8 +46,6 @@
46#ifndef __AMLCODE_H__ 46#ifndef __AMLCODE_H__
47#define __AMLCODE_H__ 47#define __AMLCODE_H__
48 48
49#pragma pack(push) /* Set default struct packing */
50
51/* primary opcodes */ 49/* primary opcodes */
52 50
53#define AML_NULL_CHAR (u16) 0x00 51#define AML_NULL_CHAR (u16) 0x00
@@ -486,6 +484,4 @@ typedef enum {
486#define AML_METHOD_SERIALIZED 0x08 484#define AML_METHOD_SERIALIZED 0x08
487#define AML_METHOD_SYNC_LEVEL 0xF0 485#define AML_METHOD_SYNC_LEVEL 0xF0
488 486
489#pragma pack(pop) /* Restore original struct packing */
490
491#endif /* __AMLCODE_H__ */ 487#endif /* __AMLCODE_H__ */
diff --git a/drivers/acpi/acpica/amlresrc.h b/drivers/acpi/acpica/amlresrc.h
index 334fbeee80d2..f3f834408441 100644
--- a/drivers/acpi/acpica/amlresrc.h
+++ b/drivers/acpi/acpica/amlresrc.h
@@ -46,8 +46,6 @@
46#ifndef __AMLRESRC_H 46#ifndef __AMLRESRC_H
47#define __AMLRESRC_H 47#define __AMLRESRC_H
48 48
49#pragma pack(push) /* Set default struct packing */
50
51/* 49/*
52 * Resource descriptor tags, as defined in the ACPI specification. 50 * Resource descriptor tags, as defined in the ACPI specification.
53 * Used to symbolically reference fields within a descriptor. 51 * Used to symbolically reference fields within a descriptor.
@@ -451,6 +449,4 @@ union aml_resource {
451 u8 byte_item; 449 u8 byte_item;
452}; 450};
453 451
454#pragma pack(pop) /* Restore original struct packing */
455
456#endif 452#endif