aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2000-12-01 09:36:25 +0000
committerMike Smith <msmith@FreeBSD.org>2000-12-01 09:36:25 +0000
commitf2ed5750af4c77d9075ddf1c28ecfdea8c12c6ae (patch)
tree7c849b394b62ba086bc123f7a780a33169a79fe8 /sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c
parent926328c40640129470e712faa4614b6a317c00a9 (diff)
Update to the 20001115 Intel ACPI CA snapshot.
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=69450
Diffstat (limited to 'sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c')
-rw-r--r--sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c b/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c
index 1b626bf46b69..e9736b67f2c9 100644
--- a/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c
+++ b/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c
@@ -3,7 +3,7 @@
*
* Module Name: amstoren - AML Interpreter object store support,
* Store to Node (namespace object)
- * $Revision: 22 $
+ * $Revision: 23 $
*
*****************************************************************************/
@@ -669,7 +669,12 @@ AcpiAmlStoreObjectToNode (
case ACPI_TYPE_NUMBER:
+
DestDesc->Number.Value = ValDesc->Number.Value;
+
+ /* Truncate value if we are executing from a 32-bit ACPI table */
+
+ AcpiAmlTruncateFor32bitTable (DestDesc, WalkState);
break;