Skip to content

Commit

Permalink
Revert "[ACPI] fix pnpacpi regression resulting from ACPICA 20051117"
Browse files Browse the repository at this point in the history
This reverts ed349a8 commit.
  • Loading branch information
Len Brown committed Jan 16, 2006
1 parent 3963f00 commit 2ae4117
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/acpi/resources/rsxface.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,12 +286,6 @@ acpi_walk_resources(acpi_handle device_handle,
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 */

status = user_function(resource, context);
Expand All @@ -304,6 +298,12 @@ acpi_walk_resources(acpi_handle device_handle,
break;
}

/* end_tag indicates end-of-list */

if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
break;
}

/* Get the next resource descriptor */

resource =
Expand Down

0 comments on commit 2ae4117

Please sign in to comment.