mirror of
https://github.com/acpica/acpica/
synced 2025-01-18 15:39:18 +03:00
Added support for FADT, FACS in AcpiInstallTable.
date 2002.02.01.18.57.00; author rmoore1; state Exp;
This commit is contained in:
parent
9e0f807a30
commit
48d8b236e5
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: psparse - Parser top level AML parse routines
|
||||
* $Revision: 1.116 $
|
||||
* $Revision: 1.118 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
*
|
||||
* 1. Copyright Notice
|
||||
*
|
||||
* Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.
|
||||
* Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 2. License
|
||||
@ -288,6 +288,13 @@ AcpiPsCompleteThisOp (
|
||||
FUNCTION_TRACE_PTR ("PsCompleteThisOp", Op);
|
||||
|
||||
|
||||
/* Check for null Op, can happen if AML code is corrupt */
|
||||
|
||||
if (!Op)
|
||||
{
|
||||
return_VALUE (TRUE);
|
||||
}
|
||||
|
||||
/* Delete this op and the subtree below it if asked to */
|
||||
|
||||
if (((WalkState->ParseFlags & ACPI_PARSE_TREE_MASK) == ACPI_PARSE_DELETE_TREE) &&
|
||||
@ -1018,7 +1025,7 @@ CloseThisOp:
|
||||
|
||||
AcpiPsCompleteThisOp (WalkState, Op);
|
||||
Op = NULL;
|
||||
|
||||
|
||||
Status = AE_OK;
|
||||
break;
|
||||
|
||||
@ -1188,7 +1195,7 @@ AcpiPsParseAml (
|
||||
WalkState->Thread = Thread;
|
||||
AcpiDsPushWalkState (WalkState, Thread);
|
||||
|
||||
/*
|
||||
/*
|
||||
* This global allows the AML debugger to get a handle to the currently
|
||||
* executing control method.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user