mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 01:44:33 +03:00
16-bit warning removal
date 2005.06.23.20.47.00; author rmoore1; state Exp;
This commit is contained in:
parent
00401a93fa
commit
ee06d65ddb
@ -2,7 +2,7 @@
|
|||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
* Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
|
* Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
|
||||||
* $Revision: 1.129 $
|
* $Revision: 1.131 $
|
||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
@ -218,7 +218,8 @@ AcpiExGetObjectReference (
|
|||||||
ReferenceObj->Reference.Object = ReferencedObj;
|
ReferenceObj->Reference.Object = ReferencedObj;
|
||||||
*ReturnDesc = ReferenceObj;
|
*ReturnDesc = ReferenceObj;
|
||||||
|
|
||||||
ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Object %p Type [%s], returning Reference %p\n",
|
ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
|
||||||
|
"Object %p Type [%s], returning Reference %p\n",
|
||||||
ObjDesc, AcpiUtGetObjectTypeName (ObjDesc), *ReturnDesc));
|
ObjDesc, AcpiUtGetObjectTypeName (ObjDesc), *ReturnDesc));
|
||||||
|
|
||||||
return_ACPI_STATUS (AE_OK);
|
return_ACPI_STATUS (AE_OK);
|
||||||
@ -385,7 +386,7 @@ AcpiExDoConcatenate (
|
|||||||
/* Result of two Integers is a Buffer */
|
/* Result of two Integers is a Buffer */
|
||||||
/* Need enough buffer space for two integers */
|
/* Need enough buffer space for two integers */
|
||||||
|
|
||||||
ReturnDesc = AcpiUtCreateBufferObject (
|
ReturnDesc = AcpiUtCreateBufferObject ((ACPI_SIZE)
|
||||||
ACPI_MUL_2 (AcpiGbl_IntegerByteWidth));
|
ACPI_MUL_2 (AcpiGbl_IntegerByteWidth));
|
||||||
if (!ReturnDesc)
|
if (!ReturnDesc)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user