Deleted Added
full compact
exstorob.c (67754) exstorob.c (69450)
1
2/******************************************************************************
3 *
4 * Module Name: amstorob - AML Interpreter object store support, store to object
1
2/******************************************************************************
3 *
4 * Module Name: amstorob - AML Interpreter object store support, store to object
5 * $Revision: 16 $
5 * $Revision: 17 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, Intel Corp. All rights

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

411 ("AmlStoreObjectToObject: Truncating src buffer from %d to %d\n",
412 Length, DestDesc->Buffer.Length));
413 }
414 break;
415
416 case ACPI_TYPE_NUMBER:
417
418 DestDesc->Number.Value = ValDesc->Number.Value;
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, Intel Corp. All rights

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

411 ("AmlStoreObjectToObject: Truncating src buffer from %d to %d\n",
412 Length, DestDesc->Buffer.Length));
413 }
414 break;
415
416 case ACPI_TYPE_NUMBER:
417
418 DestDesc->Number.Value = ValDesc->Number.Value;
419
420 /* Truncate value if we are executing from a 32-bit ACPI table */
421
422 AcpiAmlTruncateFor32bitTable (DestDesc, WalkState);
419 break;
420
421 default:
422
423 /*
424 * All other types than Alias and the various Fields come here.
425 * Store ValDesc as the new value of the Name, and set
426 * the Name's type to that of the value being stored in it.

--- 16 unchanged lines hidden ---
423 break;
424
425 default:
426
427 /*
428 * All other types than Alias and the various Fields come here.
429 * Store ValDesc as the new value of the Name, and set
430 * the Name's type to that of the value being stored in it.

--- 16 unchanged lines hidden ---