Commit 6306bf88 authored by Lv Zheng's avatar Lv Zheng Committed by Rafael J. Wysocki

ACPICA: Utilities: Correct conditional compilation definitions.

ACPICA commit 9a5982afbebc56289c4834b5f6dac87e0f04af14

Some conditional compilation definitions are wrong across header and source
files. This patch corrects them for the utilities component.

Link: https://github.com/acpica/acpica/commit/9a5982afReported-by: default avatarRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Signed-off-by: default avatarLv Zheng <lv.zheng@intel.com>
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 76cffa79
...@@ -502,6 +502,9 @@ const union acpi_predefined_info *acpi_ut_get_next_predefined_method(const union ...@@ -502,6 +502,9 @@ const union acpi_predefined_info *acpi_ut_get_next_predefined_method(const union
const union acpi_predefined_info *acpi_ut_match_predefined_method(char *name); const union acpi_predefined_info *acpi_ut_match_predefined_method(char *name);
void acpi_ut_get_expected_return_types(char *buffer, u32 expected_btypes);
#if (defined ACPI_ASL_COMPILER || defined ACPI_HELP_APP)
const union acpi_predefined_info *acpi_ut_match_resource_name(char *name); const union acpi_predefined_info *acpi_ut_match_resource_name(char *name);
void void
...@@ -509,9 +512,8 @@ acpi_ut_display_predefined_method(char *buffer, ...@@ -509,9 +512,8 @@ acpi_ut_display_predefined_method(char *buffer,
const union acpi_predefined_info *this_name, const union acpi_predefined_info *this_name,
u8 multi_line); u8 multi_line);
void acpi_ut_get_expected_return_types(char *buffer, u32 expected_btypes);
u32 acpi_ut_get_resource_bit_width(char *buffer, u16 types); u32 acpi_ut_get_resource_bit_width(char *buffer, u16 types);
#endif
/* /*
* utstate - Generic state creation/cache routines * utstate - Generic state creation/cache routines
...@@ -562,7 +564,9 @@ const struct acpi_exception_info *acpi_ut_validate_exception(acpi_status ...@@ -562,7 +564,9 @@ const struct acpi_exception_info *acpi_ut_validate_exception(acpi_status
u8 acpi_ut_is_pci_root_bridge(char *id); u8 acpi_ut_is_pci_root_bridge(char *id);
#if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP)
u8 acpi_ut_is_aml_table(struct acpi_table_header *table); u8 acpi_ut_is_aml_table(struct acpi_table_header *table);
#endif
acpi_status acpi_status
acpi_ut_walk_package_tree(union acpi_operand_object *source_object, acpi_ut_walk_package_tree(union acpi_operand_object *source_object,
...@@ -621,15 +625,19 @@ acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc, u8 **end_tag); ...@@ -621,15 +625,19 @@ acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc, u8 **end_tag);
*/ */
void acpi_ut_strupr(char *src_string); void acpi_ut_strupr(char *src_string);
#ifdef ACPI_ASL_COMPILER
void acpi_ut_strlwr(char *src_string); void acpi_ut_strlwr(char *src_string);
int acpi_ut_stricmp(char *string1, char *string2); int acpi_ut_stricmp(char *string1, char *string2);
#endif
acpi_status acpi_ut_strtoul64(char *string, u32 base, u64 *ret_integer); acpi_status acpi_ut_strtoul64(char *string, u32 base, u64 *ret_integer);
void acpi_ut_print_string(char *string, u16 max_length); void acpi_ut_print_string(char *string, u16 max_length);
#if defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP
void ut_convert_backslashes(char *pathname); void ut_convert_backslashes(char *pathname);
#endif
u8 acpi_ut_valid_acpi_name(char *name); u8 acpi_ut_valid_acpi_name(char *name);
...@@ -777,6 +785,8 @@ int acpi_ut_file_printf(ACPI_FILE file, const char *format, ...); ...@@ -777,6 +785,8 @@ int acpi_ut_file_printf(ACPI_FILE file, const char *format, ...);
/* /*
* utuuid -- UUID support functions * utuuid -- UUID support functions
*/ */
#if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP || defined ACPI_HELP_APP)
void acpi_ut_convert_string_to_uuid(char *in_string, u8 *uuid_buffer); void acpi_ut_convert_string_to_uuid(char *in_string, u8 *uuid_buffer);
#endif
#endif /* _ACUTILS_H */ #endif /* _ACUTILS_H */
...@@ -75,6 +75,7 @@ u8 acpi_ut_is_pci_root_bridge(char *id) ...@@ -75,6 +75,7 @@ u8 acpi_ut_is_pci_root_bridge(char *id)
return (FALSE); return (FALSE);
} }
#if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP)
/******************************************************************************* /*******************************************************************************
* *
* FUNCTION: acpi_ut_is_aml_table * FUNCTION: acpi_ut_is_aml_table
...@@ -102,6 +103,7 @@ u8 acpi_ut_is_aml_table(struct acpi_table_header *table) ...@@ -102,6 +103,7 @@ u8 acpi_ut_is_aml_table(struct acpi_table_header *table)
return (FALSE); return (FALSE);
} }
#endif
/******************************************************************************* /*******************************************************************************
* *
......
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
#define _COMPONENT ACPI_COMPILER #define _COMPONENT ACPI_COMPILER
ACPI_MODULE_NAME("utuuid") ACPI_MODULE_NAME("utuuid")
#if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP || defined ACPI_HELP_APP)
/* /*
* UUID support functions. * UUID support functions.
* *
...@@ -94,3 +95,4 @@ void acpi_ut_convert_string_to_uuid(char *in_string, u8 *uuid_buffer) ...@@ -94,3 +95,4 @@ void acpi_ut_convert_string_to_uuid(char *in_string, u8 *uuid_buffer)
1]); 1]);
} }
} }
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment