|
@@ -209,7 +209,8 @@ acpi_ds_create_buffer_field(union acpi_parse_object *op,
|
|
|
ACPI_IMODE_LOAD_PASS1, flags,
|
|
|
walk_state, &node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ arg->common.value.string, status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
}
|
|
|
}
|
|
@@ -383,7 +384,9 @@ acpi_ds_get_field_names(struct acpi_create_field_info *info,
|
|
|
walk_state,
|
|
|
&info->connection_node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(child->common.
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->
|
|
|
+ scope_info,
|
|
|
+ child->common.
|
|
|
value.name,
|
|
|
status);
|
|
|
return_ACPI_STATUS(status);
|
|
@@ -402,7 +405,8 @@ acpi_ds_get_field_names(struct acpi_create_field_info *info,
|
|
|
ACPI_NS_DONT_OPEN_SCOPE,
|
|
|
walk_state, &info->field_node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE((char *)&arg->named.name,
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ (char *)&arg->named.name,
|
|
|
status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
} else {
|
|
@@ -498,7 +502,8 @@ acpi_ds_create_field(union acpi_parse_object *op,
|
|
|
®ion_node);
|
|
|
#endif
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(arg->common.value.name, status);
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ arg->common.value.name, status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
}
|
|
|
}
|
|
@@ -618,7 +623,8 @@ acpi_ds_init_field_objects(union acpi_parse_object *op,
|
|
|
ACPI_IMODE_LOAD_PASS1, flags,
|
|
|
walk_state, &node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE((char *)&arg->named.name,
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ (char *)&arg->named.name,
|
|
|
status);
|
|
|
if (status != AE_ALREADY_EXISTS) {
|
|
|
return_ACPI_STATUS(status);
|
|
@@ -681,7 +687,8 @@ acpi_ds_create_bank_field(union acpi_parse_object *op,
|
|
|
®ion_node);
|
|
|
#endif
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(arg->common.value.name, status);
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ arg->common.value.name, status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
}
|
|
|
}
|
|
@@ -695,7 +702,8 @@ acpi_ds_create_bank_field(union acpi_parse_object *op,
|
|
|
ACPI_NS_SEARCH_PARENT, walk_state,
|
|
|
&info.register_node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ arg->common.value.string, status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
}
|
|
|
|
|
@@ -765,7 +773,8 @@ acpi_ds_create_index_field(union acpi_parse_object *op,
|
|
|
ACPI_NS_SEARCH_PARENT, walk_state,
|
|
|
&info.register_node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ arg->common.value.string, status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
}
|
|
|
|
|
@@ -778,7 +787,8 @@ acpi_ds_create_index_field(union acpi_parse_object *op,
|
|
|
ACPI_NS_SEARCH_PARENT, walk_state,
|
|
|
&info.data_register_node);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
|
|
|
+ ACPI_ERROR_NAMESPACE(walk_state->scope_info,
|
|
|
+ arg->common.value.string, status);
|
|
|
return_ACPI_STATUS(status);
|
|
|
}
|
|
|
|