diff options
author | Bob Moore <robert.moore@intel.com> | 2008-11-12 01:16:21 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-29 22:38:36 -0500 |
commit | 6de4048a416d46eb2ac6597d03d2b58806a6b800 (patch) | |
tree | ca04d7e3088c9f8d302135e4e6ba266106ee024b /include/acpi | |
parent | 4a6908a3a050aacc9c3a2f36b276b46c0629ad91 (diff) |
ACPICA: Fix several warnings under gcc 4 compiler
New compiler is pickier than older versions.
Joerg Sonnenberger. From ACPICA BZ 732.
http://www.acpica.org/bugzilla/show_bug.cgi?id=732
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/actypes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 7220361790b3..a9719d69e72e 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -291,7 +291,7 @@ typedef u32 acpi_physical_address; | |||
291 | #endif | 291 | #endif |
292 | 292 | ||
293 | /* | 293 | /* |
294 | * Mescellaneous types | 294 | * Miscellaneous types |
295 | */ | 295 | */ |
296 | typedef u32 acpi_status; /* All ACPI Exceptions */ | 296 | typedef u32 acpi_status; /* All ACPI Exceptions */ |
297 | typedef u32 acpi_name; /* 4-byte ACPI name */ | 297 | typedef u32 acpi_name; /* 4-byte ACPI name */ |
@@ -319,7 +319,7 @@ struct uint32_struct { | |||
319 | #define acpi_semaphore void * | 319 | #define acpi_semaphore void * |
320 | 320 | ||
321 | /* | 321 | /* |
322 | * Acpi integer width. In ACPI version 1, integers are 32 bits. In ACPI | 322 | * Acpi integer width. In ACPI version 1, integers are 32 bits. In ACPI |
323 | * version 2, integers are 64 bits. Note that this pertains to the ACPI integer | 323 | * version 2, integers are 64 bits. Note that this pertains to the ACPI integer |
324 | * type only, not other integers used in the implementation of the ACPI CA | 324 | * type only, not other integers used in the implementation of the ACPI CA |
325 | * subsystem. | 325 | * subsystem. |
@@ -414,7 +414,7 @@ typedef unsigned long long acpi_integer; | |||
414 | #define ACPI_NOTIFY_MAX 0x0B | 414 | #define ACPI_NOTIFY_MAX 0x0B |
415 | 415 | ||
416 | /* | 416 | /* |
417 | * Types associated with ACPI names and objects. The first group of | 417 | * Types associated with ACPI names and objects. The first group of |
418 | * values (up to ACPI_TYPE_EXTERNAL_MAX) correspond to the definition | 418 | * values (up to ACPI_TYPE_EXTERNAL_MAX) correspond to the definition |
419 | * of the ACPI object_type() operator (See the ACPI Spec). Therefore, | 419 | * of the ACPI object_type() operator (See the ACPI Spec). Therefore, |
420 | * only add to the first group if the spec changes. | 420 | * only add to the first group if the spec changes. |
@@ -787,7 +787,7 @@ acpi_status(*acpi_exception_handler) (acpi_status aml_status, | |||
787 | u16 opcode, | 787 | u16 opcode, |
788 | u32 aml_offset, void *context); | 788 | u32 aml_offset, void *context); |
789 | 789 | ||
790 | /* Table Event handler (Load, load_table etc) and types */ | 790 | /* Table Event handler (Load, load_table, etc.) and types */ |
791 | 791 | ||
792 | typedef | 792 | typedef |
793 | acpi_status(*acpi_tbl_handler) (u32 event, void *table, void *context); | 793 | acpi_status(*acpi_tbl_handler) (u32 event, void *table, void *context); |