diff options
Diffstat (limited to 'drivers/acpi/dispatcher/dsopcode.c')
-rw-r--r-- | drivers/acpi/dispatcher/dsopcode.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/drivers/acpi/dispatcher/dsopcode.c b/drivers/acpi/dispatcher/dsopcode.c index 939d167bf87b..6229c10674e1 100644 --- a/drivers/acpi/dispatcher/dsopcode.c +++ b/drivers/acpi/dispatcher/dsopcode.c | |||
@@ -6,7 +6,7 @@ | |||
6 | *****************************************************************************/ | 6 | *****************************************************************************/ |
7 | 7 | ||
8 | /* | 8 | /* |
9 | * Copyright (C) 2000 - 2005, R. Byron Moore | 9 | * Copyright (C) 2000 - 2006, R. Byron Moore |
10 | * All rights reserved. | 10 | * All rights reserved. |
11 | * | 11 | * |
12 | * Redistribution and use in source and binary forms, with or without | 12 | * Redistribution and use in source and binary forms, with or without |
@@ -245,7 +245,9 @@ acpi_status acpi_ds_get_buffer_arguments(union acpi_operand_object *obj_desc) | |||
245 | 245 | ||
246 | node = obj_desc->buffer.node; | 246 | node = obj_desc->buffer.node; |
247 | if (!node) { | 247 | if (!node) { |
248 | ACPI_REPORT_ERROR(("No pointer back to NS node in buffer obj %p\n", obj_desc)); | 248 | ACPI_ERROR((AE_INFO, |
249 | "No pointer back to NS node in buffer obj %p", | ||
250 | obj_desc)); | ||
249 | return_ACPI_STATUS(AE_AML_INTERNAL); | 251 | return_ACPI_STATUS(AE_AML_INTERNAL); |
250 | } | 252 | } |
251 | 253 | ||
@@ -287,8 +289,9 @@ acpi_status acpi_ds_get_package_arguments(union acpi_operand_object *obj_desc) | |||
287 | 289 | ||
288 | node = obj_desc->package.node; | 290 | node = obj_desc->package.node; |
289 | if (!node) { | 291 | if (!node) { |
290 | ACPI_REPORT_ERROR(("No pointer back to NS node in package %p\n", | 292 | ACPI_ERROR((AE_INFO, |
291 | obj_desc)); | 293 | "No pointer back to NS node in package %p", |
294 | obj_desc)); | ||
292 | return_ACPI_STATUS(AE_AML_INTERNAL); | 295 | return_ACPI_STATUS(AE_AML_INTERNAL); |
293 | } | 296 | } |
294 | 297 | ||
@@ -413,9 +416,9 @@ acpi_ds_init_buffer_field(u16 aml_opcode, | |||
413 | /* Host object must be a Buffer */ | 416 | /* Host object must be a Buffer */ |
414 | 417 | ||
415 | if (ACPI_GET_OBJECT_TYPE(buffer_desc) != ACPI_TYPE_BUFFER) { | 418 | if (ACPI_GET_OBJECT_TYPE(buffer_desc) != ACPI_TYPE_BUFFER) { |
416 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 419 | ACPI_ERROR((AE_INFO, |
417 | "Target of Create Field is not a Buffer object - %s\n", | 420 | "Target of Create Field is not a Buffer object - %s", |
418 | acpi_ut_get_object_type_name(buffer_desc))); | 421 | acpi_ut_get_object_type_name(buffer_desc))); |
419 | 422 | ||
420 | status = AE_AML_OPERAND_TYPE; | 423 | status = AE_AML_OPERAND_TYPE; |
421 | goto cleanup; | 424 | goto cleanup; |
@@ -427,10 +430,10 @@ acpi_ds_init_buffer_field(u16 aml_opcode, | |||
427 | * after resolution in acpi_ex_resolve_operands(). | 430 | * after resolution in acpi_ex_resolve_operands(). |
428 | */ | 431 | */ |
429 | if (ACPI_GET_DESCRIPTOR_TYPE(result_desc) != ACPI_DESC_TYPE_NAMED) { | 432 | if (ACPI_GET_DESCRIPTOR_TYPE(result_desc) != ACPI_DESC_TYPE_NAMED) { |
430 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 433 | ACPI_ERROR((AE_INFO, |
431 | "(%s) destination not a NS Node [%s]\n", | 434 | "(%s) destination not a NS Node [%s]", |
432 | acpi_ps_get_opcode_name(aml_opcode), | 435 | acpi_ps_get_opcode_name(aml_opcode), |
433 | acpi_ut_get_descriptor_name(result_desc))); | 436 | acpi_ut_get_descriptor_name(result_desc))); |
434 | 437 | ||
435 | status = AE_AML_OPERAND_TYPE; | 438 | status = AE_AML_OPERAND_TYPE; |
436 | goto cleanup; | 439 | goto cleanup; |
@@ -453,8 +456,8 @@ acpi_ds_init_buffer_field(u16 aml_opcode, | |||
453 | /* Must have a valid (>0) bit count */ | 456 | /* Must have a valid (>0) bit count */ |
454 | 457 | ||
455 | if (bit_count == 0) { | 458 | if (bit_count == 0) { |
456 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 459 | ACPI_ERROR((AE_INFO, |
457 | "Attempt to create_field of length 0\n")); | 460 | "Attempt to create_field of length zero")); |
458 | status = AE_AML_OPERAND_VALUE; | 461 | status = AE_AML_OPERAND_VALUE; |
459 | goto cleanup; | 462 | goto cleanup; |
460 | } | 463 | } |
@@ -507,9 +510,8 @@ acpi_ds_init_buffer_field(u16 aml_opcode, | |||
507 | 510 | ||
508 | default: | 511 | default: |
509 | 512 | ||
510 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 513 | ACPI_ERROR((AE_INFO, |
511 | "Unknown field creation opcode %02x\n", | 514 | "Unknown field creation opcode %02x", aml_opcode)); |
512 | aml_opcode)); | ||
513 | status = AE_AML_BAD_OPCODE; | 515 | status = AE_AML_BAD_OPCODE; |
514 | goto cleanup; | 516 | goto cleanup; |
515 | } | 517 | } |
@@ -517,13 +519,12 @@ acpi_ds_init_buffer_field(u16 aml_opcode, | |||
517 | /* Entire field must fit within the current length of the buffer */ | 519 | /* Entire field must fit within the current length of the buffer */ |
518 | 520 | ||
519 | if ((bit_offset + bit_count) > (8 * (u32) buffer_desc->buffer.length)) { | 521 | if ((bit_offset + bit_count) > (8 * (u32) buffer_desc->buffer.length)) { |
520 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 522 | ACPI_ERROR((AE_INFO, |
521 | "Field [%4.4s] size %d exceeds Buffer [%4.4s] size %d (bits)\n", | 523 | "Field [%4.4s] at %d exceeds Buffer [%4.4s] size %d (bits)", |
522 | acpi_ut_get_node_name(result_desc), | 524 | acpi_ut_get_node_name(result_desc), |
523 | bit_offset + bit_count, | 525 | bit_offset + bit_count, |
524 | acpi_ut_get_node_name(buffer_desc->buffer. | 526 | acpi_ut_get_node_name(buffer_desc->buffer.node), |
525 | node), | 527 | 8 * (u32) buffer_desc->buffer.length)); |
526 | 8 * (u32) buffer_desc->buffer.length)); | ||
527 | status = AE_AML_BUFFER_LIMIT; | 528 | status = AE_AML_BUFFER_LIMIT; |
528 | goto cleanup; | 529 | goto cleanup; |
529 | } | 530 | } |
@@ -629,9 +630,9 @@ acpi_ds_eval_buffer_field_operands(struct acpi_walk_state *walk_state, | |||
629 | "after acpi_ex_resolve_operands"); | 630 | "after acpi_ex_resolve_operands"); |
630 | 631 | ||
631 | if (ACPI_FAILURE(status)) { | 632 | if (ACPI_FAILURE(status)) { |
632 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "(%s) bad operand(s) (%X)\n", | 633 | ACPI_ERROR((AE_INFO, "(%s) bad operand(s) (%X)", |
633 | acpi_ps_get_opcode_name(op->common. | 634 | acpi_ps_get_opcode_name(op->common.aml_opcode), |
634 | aml_opcode), status)); | 635 | status)); |
635 | 636 | ||
636 | return_ACPI_STATUS(status); | 637 | return_ACPI_STATUS(status); |
637 | } | 638 | } |
@@ -1155,9 +1156,8 @@ acpi_ds_exec_end_control_op(struct acpi_walk_state * walk_state, | |||
1155 | 1156 | ||
1156 | default: | 1157 | default: |
1157 | 1158 | ||
1158 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 1159 | ACPI_ERROR((AE_INFO, "Unknown control opcode=%X Op=%p", |
1159 | "Unknown control opcode=%X Op=%p\n", | 1160 | op->common.aml_opcode, op)); |
1160 | op->common.aml_opcode, op)); | ||
1161 | 1161 | ||
1162 | status = AE_AML_BAD_OPCODE; | 1162 | status = AE_AML_BAD_OPCODE; |
1163 | break; | 1163 | break; |