Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 2215 → Rev 2216

/drivers/devman/acpica/parser/psxface.c
8,7 → 8,7
*
* 1. Copyright Notice
*
* Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
* All rights reserved.
*
* 2. License
121,7 → 121,6
#include "acdispat.h"
#include "acinterp.h"
#include "actables.h"
#include "amlcode.h"
 
 
#define _COMPONENT ACPI_PARSER
399,7 → 398,7
goto Cleanup;
}
 
if (Info->ObjDesc->Method.Flags & AOPOBJ_MODULE_LEVEL)
if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_MODULE_LEVEL)
{
WalkState->ParseFlags |= ACPI_PARSE_MODULE_LEVEL;
}
406,9 → 405,9
 
/* Invoke an internal method if necessary */
 
if (Info->ObjDesc->Method.MethodFlags & AML_METHOD_INTERNAL_ONLY)
if (Info->ObjDesc->Method.InfoFlags & ACPI_METHOD_INTERNAL_ONLY)
{
Status = Info->ObjDesc->Method.Extra.Implementation (WalkState);
Status = Info->ObjDesc->Method.Dispatch.Implementation (WalkState);
Info->ReturnObject = WalkState->ReturnDesc;
 
/* Cleanup states */