Configurable support for 64-bit ACPI integers (ACPI 2.0)

date	2000.10.11.21.03.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:17:18 +00:00
parent 1586afce0e
commit 763ecc4db8

View File

@ -1,7 +1,7 @@
/******************************************************************************* /*******************************************************************************
* *
* Module Name: nsaccess - Top-level functions for accessing ACPI namespace * Module Name: nsaccess - Top-level functions for accessing ACPI namespace
* $Revision: 1.110 $ * $Revision: 1.111 $
* *
******************************************************************************/ ******************************************************************************/
@ -229,7 +229,7 @@ AcpiNsRootInitialize (void)
case ACPI_TYPE_NUMBER: case ACPI_TYPE_NUMBER:
ObjDesc->Number.Value = ObjDesc->Number.Value =
(UINT32) STRTOUL (InitVal->Val, NULL, 10); (ACPI_INTEGER) STRTOUL (InitVal->Val, NULL, 10);
break; break;
@ -298,7 +298,7 @@ AcpiNsRootInitialize (void)
default: default:
REPORT_ERROR (("Unsupported initial type value %X\n", REPORT_ERROR (("Unsupported initial type value %X\n",
InitVal->Type)); InitVal->Type));
AcpiCmRemoveReference (ObjDesc); AcpiCmRemoveReference (ObjDesc);
ObjDesc = NULL; ObjDesc = NULL;