ACPICA: Revert "iASL: change processing of external op namespace nodes for correctness"
Revert commit b43eac6f33
(ACPICA: iASL: change processing of
external op namespace nodes for correctness; upstream ACPICA
commit aa866a9b4f24bbec9f158d10325b486d7d12d90f).
This was done in order to allow more relaxed usage of ASL external
declarations.
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
1e4b044d22
commit
da7f7126f0
|
@ -608,18 +608,17 @@ acpi_ns_lookup(union acpi_generic_state *scope_info,
|
||||||
this_node->object;
|
this_node->object;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef ACPI_ASL_COMPILER
|
||||||
|
if (!acpi_gbl_disasm_flag &&
|
||||||
|
(this_node->flags & ANOBJ_IS_EXTERNAL)) {
|
||||||
|
this_node->flags |= IMPLICIT_EXTERNAL;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Special handling for the last segment (num_segments == 0) */
|
/* Special handling for the last segment (num_segments == 0) */
|
||||||
|
|
||||||
else {
|
else {
|
||||||
#ifdef ACPI_ASL_COMPILER
|
|
||||||
if (!acpi_gbl_disasm_flag
|
|
||||||
&& (this_node->flags & ANOBJ_IS_EXTERNAL)) {
|
|
||||||
this_node->flags &= ~IMPLICIT_EXTERNAL;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Sanity typecheck of the target object:
|
* Sanity typecheck of the target object:
|
||||||
*
|
*
|
||||||
|
|
|
@ -381,7 +381,6 @@ acpi_ns_search_and_enter(u32 target_name,
|
||||||
if (flags & ACPI_NS_EXTERNAL ||
|
if (flags & ACPI_NS_EXTERNAL ||
|
||||||
(walk_state && walk_state->opcode == AML_SCOPE_OP)) {
|
(walk_state && walk_state->opcode == AML_SCOPE_OP)) {
|
||||||
new_node->flags |= ANOBJ_IS_EXTERNAL;
|
new_node->flags |= ANOBJ_IS_EXTERNAL;
|
||||||
new_node->flags |= IMPLICIT_EXTERNAL;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue