Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95477
b: refs/heads/master
c: 24a3157
h: refs/heads/master
i:
  95475: 08c03c4
v: v3
  • Loading branch information
Bob Moore authored and Len Brown committed Apr 22, 2008
1 parent aabde0e commit 93e4fbe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a3df4dadd446c0d7195f2bbe86dd5174426d8090
refs/heads/master: 24a3157a90ddf851a0880c0b8963bc43481cd85b
8 changes: 8 additions & 0 deletions trunk/drivers/acpi/utilities/utcopy.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,10 @@ acpi_ut_copy_esimple_to_isimple(union acpi_object *external_object,
external_object->buffer.length);

internal_object->buffer.length = external_object->buffer.length;

/* Mark buffer data valid */

internal_object->buffer.flags |= AOPOBJ_DATA_VALID;
break;

case ACPI_TYPE_INTEGER:
Expand Down Expand Up @@ -586,6 +590,10 @@ acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
}
}

/* Mark package data valid */

package_object->package.flags |= AOPOBJ_DATA_VALID;

*internal_object = package_object;
return_ACPI_STATUS(status);
}
Expand Down

0 comments on commit 93e4fbe

Please sign in to comment.