| .. | .. |
|---|
| 39 | 39 | acpi_ut_predefined_warning(const char *module_name, |
|---|
| 40 | 40 | u32 line_number, |
|---|
| 41 | 41 | char *pathname, |
|---|
| 42 | | - u8 node_flags, const char *format, ...) |
|---|
| 42 | + u16 node_flags, const char *format, ...) |
|---|
| 43 | 43 | { |
|---|
| 44 | 44 | va_list arg_list; |
|---|
| 45 | 45 | |
|---|
| .. | .. |
|---|
| 81 | 81 | void ACPI_INTERNAL_VAR_XFACE |
|---|
| 82 | 82 | acpi_ut_predefined_info(const char *module_name, |
|---|
| 83 | 83 | u32 line_number, |
|---|
| 84 | | - char *pathname, u8 node_flags, const char *format, ...) |
|---|
| 84 | + char *pathname, u16 node_flags, const char *format, ...) |
|---|
| 85 | 85 | { |
|---|
| 86 | 86 | va_list arg_list; |
|---|
| 87 | 87 | |
|---|
| .. | .. |
|---|
| 124 | 124 | acpi_ut_predefined_bios_error(const char *module_name, |
|---|
| 125 | 125 | u32 line_number, |
|---|
| 126 | 126 | char *pathname, |
|---|
| 127 | | - u8 node_flags, const char *format, ...) |
|---|
| 127 | + u16 node_flags, const char *format, ...) |
|---|
| 128 | 128 | { |
|---|
| 129 | 129 | va_list arg_list; |
|---|
| 130 | 130 | |
|---|
| .. | .. |
|---|
| 183 | 183 | case AE_ALREADY_EXISTS: |
|---|
| 184 | 184 | |
|---|
| 185 | 185 | acpi_os_printf(ACPI_MSG_BIOS_ERROR); |
|---|
| 186 | | - message = "Failure creating"; |
|---|
| 186 | + message = "Failure creating named object"; |
|---|
| 187 | 187 | break; |
|---|
| 188 | 188 | |
|---|
| 189 | 189 | case AE_NOT_FOUND: |
|---|
| 190 | 190 | |
|---|
| 191 | 191 | acpi_os_printf(ACPI_MSG_BIOS_ERROR); |
|---|
| 192 | | - message = "Could not resolve"; |
|---|
| 192 | + message = "Could not resolve symbol"; |
|---|
| 193 | 193 | break; |
|---|
| 194 | 194 | |
|---|
| 195 | 195 | default: |
|---|
| 196 | 196 | |
|---|
| 197 | 197 | acpi_os_printf(ACPI_MSG_ERROR); |
|---|
| 198 | | - message = "Failure resolving"; |
|---|
| 198 | + message = "Failure resolving symbol"; |
|---|
| 199 | 199 | break; |
|---|
| 200 | 200 | } |
|---|
| 201 | 201 | |
|---|
| .. | .. |
|---|
| 317 | 317 | } |
|---|
| 318 | 318 | |
|---|
| 319 | 319 | acpi_ns_print_node_pathname(node, message); |
|---|
| 320 | | - acpi_os_printf(", %s", acpi_format_exception(method_status)); |
|---|
| 320 | + acpi_os_printf(" due to previous error (%s)", |
|---|
| 321 | + acpi_format_exception(method_status)); |
|---|
| 321 | 322 | |
|---|
| 322 | 323 | ACPI_MSG_SUFFIX; |
|---|
| 323 | 324 | ACPI_MSG_REDIRECT_END; |
|---|