Revert "[ACPI] fix pnpacpi regression resulting from ACPICA 20051117"

This reverts ed349a8a0a commit.
This commit is contained in:
Len Brown 2006-01-16 15:22:45 -05:00
parent 3963f00831
commit 2ae4117435

View file

@ -286,12 +286,6 @@ acpi_walk_resources(acpi_handle device_handle,
break; break;
} }
/* end_tag indicates end-of-list */
if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
break;
}
/* Invoke the user function, abort on any error returned */ /* Invoke the user function, abort on any error returned */
status = user_function(resource, context); status = user_function(resource, context);
@ -304,6 +298,12 @@ acpi_walk_resources(acpi_handle device_handle,
break; break;
} }
/* end_tag indicates end-of-list */
if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
break;
}
/* Get the next resource descriptor */ /* Get the next resource descriptor */
resource = resource =