Subversion Repositories Kolibri OS

Rev

Rev 1498 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 6... Line 6...
6
 
6
 
7
/******************************************************************************
7
/******************************************************************************
8
 *
8
 *
9
 * 1. Copyright Notice
9
 * 1. Copyright Notice
10
 *
10
 *
11
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
11
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
12
 * All rights reserved.
12
 * All rights reserved.
13
 *
13
 *
14
 * 2. License
14
 * 2. License
15
 *
15
 *
Line 119... Line 119...
119
#include "accommon.h"
119
#include "accommon.h"
120
#include "acparser.h"
120
#include "acparser.h"
121
#include "acdispat.h"
121
#include "acdispat.h"
122
#include "acinterp.h"
122
#include "acinterp.h"
123
#include "actables.h"
123
#include "actables.h"
124
#include "amlcode.h"
-
 
Line 125... Line 124...
125
 
124
 
126
 
125
 
Line 397... Line 396...
397
    {
396
    {
398
        AcpiDsDeleteWalkState (WalkState);
397
        AcpiDsDeleteWalkState (WalkState);
399
        goto Cleanup;
398
        goto Cleanup;
400
    }
399
    }
Line 401... Line 400...
401
 
400
 
402
    if (Info->ObjDesc->Method.Flags & AOPOBJ_MODULE_LEVEL)
401
    if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_MODULE_LEVEL)
403
    {
402
    {
404
        WalkState->ParseFlags |= ACPI_PARSE_MODULE_LEVEL;
403
        WalkState->ParseFlags |= ACPI_PARSE_MODULE_LEVEL;
Line 405... Line 404...
405
    }
404
    }
Line 406... Line 405...
406
 
405
 
407
    /* Invoke an internal method if necessary */
406
    /* Invoke an internal method if necessary */
408
 
407
 
409
    if (Info->ObjDesc->Method.MethodFlags & AML_METHOD_INTERNAL_ONLY)
408
    if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_INTERNAL_ONLY)
Line 410... Line 409...
410
    {
409
    {
Line 411... Line 410...
411
        Status = Info->ObjDesc->Method.Extra.Implementation (WalkState);
410
        Status = Info->ObjDesc->Method.Dispatch.Implementation (WalkState);