diff options
Diffstat (limited to 'executer/exutils.c')
-rw-r--r-- | executer/exutils.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/executer/exutils.c b/executer/exutils.c index 510a3ad01d91..45b35a0c2571 100644 --- a/executer/exutils.c +++ b/executer/exutils.c @@ -2,7 +2,6 @@ /****************************************************************************** * * Module Name: exutils - interpreter/scanner utilities - * $Revision: 1.129 $ * *****************************************************************************/ @@ -10,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp. * All rights reserved. * * 2. License @@ -134,9 +133,9 @@ #define DEFINE_AML_GLOBALS #include "acpi.h" +#include "accommon.h" #include "acinterp.h" #include "amlcode.h" -#include "acevents.h" #define _COMPONENT ACPI_EXECUTER ACPI_MODULE_NAME ("exutils") @@ -324,7 +323,7 @@ AcpiExTruncateFor32bitTable ( */ if ((!ObjDesc) || (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND) || - (ACPI_GET_OBJECT_TYPE (ObjDesc) != ACPI_TYPE_INTEGER)) + (ObjDesc->Common.Type != ACPI_TYPE_INTEGER)) { return; } |