diff options
author | Mike Smith <msmith@FreeBSD.org> | 2001-09-07 01:22:25 +0000 |
---|---|---|
committer | Mike Smith <msmith@FreeBSD.org> | 2001-09-07 01:22:25 +0000 |
commit | 7fb2c1c6169b76180d4ee5c3147edf4da2fdd083 (patch) | |
tree | ba0c24c50a259baa38d43cef66fae1699ec4f152 /sys/contrib/dev/acpica/exstorob.c | |
parent | 2ee2f9cb7457edd22680e19323177347cd0aabff (diff) |
Vendor-branch import of the Intel ACPI CA 20010831 snapshot.
Notes
Notes:
svn path=/vendor-sys/acpica/dist/; revision=83174
Diffstat (limited to 'sys/contrib/dev/acpica/exstorob.c')
-rw-r--r-- | sys/contrib/dev/acpica/exstorob.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/contrib/dev/acpica/exstorob.c b/sys/contrib/dev/acpica/exstorob.c index 86c567d72584..297a15495d72 100644 --- a/sys/contrib/dev/acpica/exstorob.c +++ b/sys/contrib/dev/acpica/exstorob.c @@ -2,7 +2,7 @@ /****************************************************************************** * * Module Name: exstorob - AML Interpreter object store support, store to object - * $Revision: 35 $ + * $Revision: 37 $ * *****************************************************************************/ @@ -151,7 +151,8 @@ AcpiExCopyBufferToBuffer ( UINT32 Length; UINT8 *Buffer; - PROC_NAME ("AcpiExCopyBufferToBuffer"); + + PROC_NAME ("ExCopyBufferToBuffer"); /* @@ -225,6 +226,9 @@ AcpiExCopyStringToString ( UINT8 *Buffer; + FUNCTION_ENTRY (); + + /* * We know that SourceDesc is a string by now. */ @@ -262,9 +266,8 @@ AcpiExCopyStringToString ( { return (AE_NO_MEMORY); } - TargetDesc->String.Length = Length; - + TargetDesc->String.Length = Length; MEMCPY (TargetDesc->String.Pointer, Buffer, Length); } |