mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 09:24:08 +03:00
Another pass at removal of ACPI_HANDLE from low-level CA code
date 2001.03.28.22.02.00; author rmoore1; state Exp;
This commit is contained in:
parent
b477d83da9
commit
55a32f2bb2
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: ammonad - ACPI AML (p-code) execution for monadic operators
|
||||
* $Revision: 1.94 $
|
||||
* $Revision: 1.95 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -900,7 +900,7 @@ AcpiAmlExecMonadic2 (
|
||||
/*
|
||||
* It's not a Reference, so it must be a direct name pointer.
|
||||
*/
|
||||
Type = AcpiNsGetType ((ACPI_HANDLE) ObjDesc);
|
||||
Type = AcpiNsGetType ((ACPI_NAMESPACE_NODE *) ObjDesc);
|
||||
}
|
||||
|
||||
/* Allocate a descriptor to hold the type. */
|
||||
@ -922,7 +922,7 @@ AcpiAmlExecMonadic2 (
|
||||
|
||||
if (VALID_DESCRIPTOR_TYPE (ObjDesc, ACPI_DESC_TYPE_NAMED))
|
||||
{
|
||||
ObjDesc = AcpiNsGetAttachedObject (ObjDesc);
|
||||
ObjDesc = AcpiNsGetAttachedObject ((ACPI_NAMESPACE_NODE *) ObjDesc);
|
||||
}
|
||||
|
||||
if (!ObjDesc)
|
||||
|
Loading…
x
Reference in New Issue
Block a user