Deleted Added
full compact
exstore.c (71867) exstore.c (73561)
1
2/******************************************************************************
3 *
4 * Module Name: amstore - AML Interpreter object store support
1
2/******************************************************************************
3 *
4 * Module Name: amstore - AML Interpreter object store support
5 * $Revision: 121 $
5 * $Revision: 123 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.

--- 388 unchanged lines hidden (view full) ---

402 return_ACPI_STATUS (AE_NO_MEMORY);
403 }
404
405 /*
406 * If the source is a package, copy the source to the new dest
407 */
408 if (ACPI_TYPE_PACKAGE == ObjDesc->Common.Type)
409 {
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.

--- 388 unchanged lines hidden (view full) ---

402 return_ACPI_STATUS (AE_NO_MEMORY);
403 }
404
405 /*
406 * If the source is a package, copy the source to the new dest
407 */
408 if (ACPI_TYPE_PACKAGE == ObjDesc->Common.Type)
409 {
410 Status = AcpiAmlBuildCopyInternalPackageObject (
411 ValDesc, ObjDesc, WalkState);
410 Status = AcpiCmCopyIpackageToIpackage (ValDesc, ObjDesc, WalkState);
412 if (ACPI_FAILURE (Status))
413 {
414 AcpiCmRemoveReference (ObjDesc);
415 return_ACPI_STATUS (Status);
416 }
417 }
418
419 /*

--- 293 unchanged lines hidden (view full) ---

713 FUNCTION_TRACE ("AmlStoreObjectToObject");
714
715
716 /*
717 * Assuming the parameters are valid!
718 */
719 ACPI_ASSERT((DestDesc) && (SourceDesc));
720
411 if (ACPI_FAILURE (Status))
412 {
413 AcpiCmRemoveReference (ObjDesc);
414 return_ACPI_STATUS (Status);
415 }
416 }
417
418 /*

--- 293 unchanged lines hidden (view full) ---

712 FUNCTION_TRACE ("AmlStoreObjectToObject");
713
714
715 /*
716 * Assuming the parameters are valid!
717 */
718 ACPI_ASSERT((DestDesc) && (SourceDesc));
719
721 DEBUG_PRINT (ACPI_INFO, ("AmlStoreObjectToObject: Storing %p(%s) to (%p)%s\n",
720 DEBUG_PRINT (ACPI_INFO, ("AmlStoreObjectToObject: Storing %p(%s) to %p(%s)\n",
722 SourceDesc, AcpiCmGetTypeName (SourceDesc->Common.Type),
723 DestDesc, AcpiCmGetTypeName (DestDesc->Common.Type)));
724
725
726 /*
727 * From this interface, we only support Integers/Strings/Buffers
728 */
729 switch (DestinationType)

--- 36 unchanged lines hidden ---
721 SourceDesc, AcpiCmGetTypeName (SourceDesc->Common.Type),
722 DestDesc, AcpiCmGetTypeName (DestDesc->Common.Type)));
723
724
725 /*
726 * From this interface, we only support Integers/Strings/Buffers
727 */
728 switch (DestinationType)

--- 36 unchanged lines hidden ---