diff options
author | Bob Moore | 2008-04-10 17:06:37 +0200 |
---|---|---|
committer | Len Brown | 2008-04-22 20:29:21 +0200 |
commit | dbaaa9567543191faa933e78f979f5ff7385918c (patch) | |
tree | d7d1f58fb58fc4680b06ba3b235bd422c0abcd12 | |
parent | ACPICA: Avoid use of invalid pointers in returned object field (diff) | |
download | kernel-qcow2-linux-dbaaa9567543191faa933e78f979f5ff7385918c.tar.gz kernel-qcow2-linux-dbaaa9567543191faa933e78f979f5ff7385918c.tar.xz kernel-qcow2-linux-dbaaa9567543191faa933e78f979f5ff7385918c.zip |
ACPICA: Fixed a couple compiler warnings for extra extern statements
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | include/acpi/acglobal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/acpi/acglobal.h b/include/acpi/acglobal.h index e91008eaef2d..44e718ee1579 100644 --- a/include/acpi/acglobal.h +++ b/include/acpi/acglobal.h @@ -238,6 +238,10 @@ ACPI_EXTERN u8 acpi_gbl_acpi_hardware_present; ACPI_EXTERN u8 acpi_gbl_events_initialized; ACPI_EXTERN u8 acpi_gbl_system_awake_and_running; +#ifndef DEFINE_ACPI_GLOBALS + +/* Other miscellaneous */ + extern u8 acpi_gbl_shutdown; extern u32 acpi_gbl_startup_flags; extern const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT]; @@ -245,6 +249,8 @@ extern const char *acpi_gbl_highest_dstate_names[4]; extern const struct acpi_opcode_info acpi_gbl_aml_op_info[AML_NUM_OPCODES]; extern const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS]; +#endif + /* Exception codes */ extern char const *acpi_gbl_exception_names_env[]; |