Fix to NOT perform implicit conversion when storing to an ArgX

date	2004.04.01.17.08.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:04:08 +00:00
parent dc4c4a0c66
commit 5e99f975f0

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dsmthdat - control method arguments and local variables
* $Revision: 1.77 $
* $Revision: 1.78 $
*
******************************************************************************/
@ -760,11 +760,13 @@ AcpiDsStoreObjectToLocal (
NewObjDesc, CurrentObjDesc));
/*
* Store this object to the Node
* (perform the indirect store)
* Store this object to the Node (perform the indirect store)
* NOTE: No implicit conversion is performed, as per the ACPI
* specification rules on storing to Locals/Args.
*/
Status = AcpiExStoreObjectToNode (NewObjDesc,
CurrentObjDesc->Reference.Object, WalkState);
CurrentObjDesc->Reference.Object, WalkState,
ACPI_NO_IMPLICIT_CONVERSION);
/* Remove local reference if we copied the object above */