diff options
Diffstat (limited to 'drivers/acpi/executer/exoparg6.c')
-rw-r--r-- | drivers/acpi/executer/exoparg6.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/acpi/executer/exoparg6.c b/drivers/acpi/executer/exoparg6.c index 05e7f9b67f29..e043d924444f 100644 --- a/drivers/acpi/executer/exoparg6.c +++ b/drivers/acpi/executer/exoparg6.c | |||
@@ -234,7 +234,7 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state) | |||
234 | 234 | ||
235 | if ((operand[1]->integer.value > MAX_MATCH_OPERATOR) || | 235 | if ((operand[1]->integer.value > MAX_MATCH_OPERATOR) || |
236 | (operand[3]->integer.value > MAX_MATCH_OPERATOR)) { | 236 | (operand[3]->integer.value > MAX_MATCH_OPERATOR)) { |
237 | ACPI_REPORT_ERROR(("Match operator out of range\n")); | 237 | ACPI_ERROR((AE_INFO, "Match operator out of range")); |
238 | status = AE_AML_OPERAND_VALUE; | 238 | status = AE_AML_OPERAND_VALUE; |
239 | goto cleanup; | 239 | goto cleanup; |
240 | } | 240 | } |
@@ -243,7 +243,10 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state) | |||
243 | 243 | ||
244 | index = operand[5]->integer.value; | 244 | index = operand[5]->integer.value; |
245 | if (index >= operand[0]->package.count) { | 245 | if (index >= operand[0]->package.count) { |
246 | ACPI_REPORT_ERROR(("Index (%X%8.8X) beyond package end (%X)\n", ACPI_FORMAT_UINT64(index), operand[0]->package.count)); | 246 | ACPI_ERROR((AE_INFO, |
247 | "Index (%X%8.8X) beyond package end (%X)", | ||
248 | ACPI_FORMAT_UINT64(index), | ||
249 | operand[0]->package.count)); | ||
247 | status = AE_AML_PACKAGE_LIMIT; | 250 | status = AE_AML_PACKAGE_LIMIT; |
248 | goto cleanup; | 251 | goto cleanup; |
249 | } | 252 | } |
@@ -312,8 +315,8 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state) | |||
312 | 315 | ||
313 | default: | 316 | default: |
314 | 317 | ||
315 | ACPI_REPORT_ERROR(("Unknown AML opcode %X\n", | 318 | ACPI_ERROR((AE_INFO, "Unknown AML opcode %X", |
316 | walk_state->opcode)); | 319 | walk_state->opcode)); |
317 | status = AE_AML_BAD_OPCODE; | 320 | status = AE_AML_BAD_OPCODE; |
318 | goto cleanup; | 321 | goto cleanup; |
319 | } | 322 | } |