X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=drivers%2Facpi%2Fparser%2Fpswalk.c;fp=drivers%2Facpi%2Fparser%2Fpswalk.c;h=06f05bfd761262c6f1776b25b3329b65b958c1b5;hb=64ba3f394c830ec48a1c31b53dcae312c56f1604;hp=a84a547a0f1b469706cff58935750ed4ec05db56;hpb=be1e6109ac94a859551f8e1774eb9a8469fe055c;p=linux-2.6.git diff --git a/drivers/acpi/parser/pswalk.c b/drivers/acpi/parser/pswalk.c index a84a547a0..06f05bfd7 100644 --- a/drivers/acpi/parser/pswalk.c +++ b/drivers/acpi/parser/pswalk.c @@ -64,21 +64,18 @@ void acpi_ps_delete_parse_tree(union acpi_parse_object *subtree_root) union acpi_parse_object *next = NULL; union acpi_parse_object *parent = NULL; - ACPI_FUNCTION_TRACE_PTR(ps_delete_parse_tree, subtree_root); + ACPI_FUNCTION_TRACE_PTR("ps_delete_parse_tree", subtree_root); /* Visit all nodes in the subtree */ while (op) { - /* Check if we are not ascending */ if (op != parent) { - /* Look for an argument or child of the current op */ next = acpi_ps_get_arg(op, 0); if (next) { - /* Still going downward in tree (Op is not completed yet) */ op = next;