mirror of
https://github.com/acpica/acpica/
synced 2025-01-18 07:29:20 +03:00
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:
parent
1586afce0e
commit
763ecc4db8
@ -1,7 +1,7 @@
|
||||
/*******************************************************************************
|
||||
*
|
||||
* 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:
|
||||
|
||||
ObjDesc->Number.Value =
|
||||
(UINT32) STRTOUL (InitVal->Val, NULL, 10);
|
||||
(ACPI_INTEGER) STRTOUL (InitVal->Val, NULL, 10);
|
||||
break;
|
||||
|
||||
|
||||
@ -298,7 +298,7 @@ AcpiNsRootInitialize (void)
|
||||
|
||||
|
||||
default:
|
||||
REPORT_ERROR (("Unsupported initial type value %X\n",
|
||||
REPORT_ERROR (("Unsupported initial type value %X\n",
|
||||
InitVal->Type));
|
||||
AcpiCmRemoveReference (ObjDesc);
|
||||
ObjDesc = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user