diff options
Diffstat (limited to 'drivers/acpi/namespace/nsaccess.c')
| -rw-r--r-- | drivers/acpi/namespace/nsaccess.c | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/drivers/acpi/namespace/nsaccess.c b/drivers/acpi/namespace/nsaccess.c index edfbe34600f5..1149bc18fb35 100644 --- a/drivers/acpi/namespace/nsaccess.c +++ b/drivers/acpi/namespace/nsaccess.c | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ******************************************************************************/ | 5 | ******************************************************************************/ |
| 6 | 6 | ||
| 7 | /* | 7 | /* |
| 8 | * Copyright (C) 2000 - 2005, R. Byron Moore | 8 | * Copyright (C) 2000 - 2006, R. Byron Moore |
| 9 | * All rights reserved. | 9 | * All rights reserved. |
| 10 | * | 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
| @@ -110,10 +110,9 @@ acpi_status acpi_ns_root_initialize(void) | |||
| 110 | ACPI_NS_NO_UPSEARCH, NULL, &new_node); | 110 | ACPI_NS_NO_UPSEARCH, NULL, &new_node); |
| 111 | 111 | ||
| 112 | if (ACPI_FAILURE(status) || (!new_node)) { /* Must be on same line for code converter */ | 112 | if (ACPI_FAILURE(status) || (!new_node)) { /* Must be on same line for code converter */ |
| 113 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 113 | ACPI_EXCEPTION((AE_INFO, status, |
| 114 | "Could not create predefined name %s, %s\n", | 114 | "Could not create predefined name %s", |
| 115 | init_val->name, | 115 | init_val->name)); |
| 116 | acpi_format_exception(status))); | ||
| 117 | } | 116 | } |
| 118 | 117 | ||
| 119 | /* | 118 | /* |
| @@ -124,9 +123,9 @@ acpi_status acpi_ns_root_initialize(void) | |||
| 124 | if (init_val->val) { | 123 | if (init_val->val) { |
| 125 | status = acpi_os_predefined_override(init_val, &val); | 124 | status = acpi_os_predefined_override(init_val, &val); |
| 126 | if (ACPI_FAILURE(status)) { | 125 | if (ACPI_FAILURE(status)) { |
| 127 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 126 | ACPI_ERROR((AE_INFO, |
| 128 | "Could not override predefined %s\n", | 127 | "Could not override predefined %s", |
| 129 | init_val->name)); | 128 | init_val->name)); |
| 130 | } | 129 | } |
| 131 | 130 | ||
| 132 | if (!val) { | 131 | if (!val) { |
| @@ -233,7 +232,9 @@ acpi_status acpi_ns_root_initialize(void) | |||
| 233 | 232 | ||
| 234 | default: | 233 | default: |
| 235 | 234 | ||
| 236 | ACPI_REPORT_ERROR(("Unsupported initial type value %X\n", init_val->type)); | 235 | ACPI_ERROR((AE_INFO, |
| 236 | "Unsupported initial type value %X", | ||
| 237 | init_val->type)); | ||
| 237 | acpi_ut_remove_reference(obj_desc); | 238 | acpi_ut_remove_reference(obj_desc); |
| 238 | obj_desc = NULL; | 239 | obj_desc = NULL; |
| 239 | continue; | 240 | continue; |
| @@ -339,7 +340,9 @@ acpi_ns_lookup(union acpi_generic_state *scope_info, | |||
| 339 | prefix_node = scope_info->scope.node; | 340 | prefix_node = scope_info->scope.node; |
| 340 | if (ACPI_GET_DESCRIPTOR_TYPE(prefix_node) != | 341 | if (ACPI_GET_DESCRIPTOR_TYPE(prefix_node) != |
| 341 | ACPI_DESC_TYPE_NAMED) { | 342 | ACPI_DESC_TYPE_NAMED) { |
| 342 | ACPI_REPORT_ERROR(("ns_lookup: %p is not a namespace node [%s]\n", prefix_node, acpi_ut_get_descriptor_name(prefix_node))); | 343 | ACPI_ERROR((AE_INFO, "%p is not a namespace node [%s]", |
| 344 | prefix_node, | ||
| 345 | acpi_ut_get_descriptor_name(prefix_node))); | ||
| 343 | return_ACPI_STATUS(AE_AML_INTERNAL); | 346 | return_ACPI_STATUS(AE_AML_INTERNAL); |
| 344 | } | 347 | } |
| 345 | 348 | ||
| @@ -429,7 +432,8 @@ acpi_ns_lookup(union acpi_generic_state *scope_info, | |||
| 429 | if (!this_node) { | 432 | if (!this_node) { |
| 430 | /* Current scope has no parent scope */ | 433 | /* Current scope has no parent scope */ |
| 431 | 434 | ||
| 432 | ACPI_REPORT_ERROR(("ACPI path has too many parent prefixes (^) - reached beyond root node\n")); | 435 | ACPI_ERROR((AE_INFO, |
| 436 | "ACPI path has too many parent prefixes (^) - reached beyond root node")); | ||
| 433 | return_ACPI_STATUS(AE_NOT_FOUND); | 437 | return_ACPI_STATUS(AE_NOT_FOUND); |
| 434 | } | 438 | } |
| 435 | } | 439 | } |
| @@ -498,7 +502,7 @@ acpi_ns_lookup(union acpi_generic_state *scope_info, | |||
| 498 | path++; | 502 | path++; |
| 499 | 503 | ||
| 500 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, | 504 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 501 | "Multi Pathname (%d Segments, Flags=%X) \n", | 505 | "Multi Pathname (%d Segments, Flags=%X)\n", |
| 502 | num_segments, flags)); | 506 | num_segments, flags)); |
| 503 | break; | 507 | break; |
| 504 | 508 | ||
| @@ -600,7 +604,12 @@ acpi_ns_lookup(union acpi_generic_state *scope_info, | |||
| 600 | (this_node->type != type_to_check_for)) { | 604 | (this_node->type != type_to_check_for)) { |
| 601 | /* Complain about a type mismatch */ | 605 | /* Complain about a type mismatch */ |
| 602 | 606 | ||
| 603 | ACPI_REPORT_WARNING(("ns_lookup: Type mismatch on %4.4s (%s), searching for (%s)\n", (char *)&simple_name, acpi_ut_get_type_name(this_node->type), acpi_ut_get_type_name(type_to_check_for))); | 607 | ACPI_WARNING((AE_INFO, |
| 608 | "ns_lookup: Type mismatch on %4.4s (%s), searching for (%s)", | ||
| 609 | ACPI_CAST_PTR(char, &simple_name), | ||
| 610 | acpi_ut_get_type_name(this_node->type), | ||
| 611 | acpi_ut_get_type_name | ||
| 612 | (type_to_check_for))); | ||
| 604 | } | 613 | } |
| 605 | 614 | ||
| 606 | /* | 615 | /* |
