diff options
Diffstat (limited to 'source/compiler/aslcompile.c')
| -rw-r--r-- | source/compiler/aslcompile.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/source/compiler/aslcompile.c b/source/compiler/aslcompile.c index 269c1bffaf6d..941dd5d0fdea 100644 --- a/source/compiler/aslcompile.c +++ b/source/compiler/aslcompile.c @@ -617,7 +617,7 @@ CmDoCompile (      /* Namespace cross-reference */      AslGbl_NamespaceEvent = UtBeginEvent ("Cross reference parse tree and Namespace"); -    Status = LkCrossReferenceNamespace (); +    Status = XfCrossReferenceNamespace ();      if (ACPI_FAILURE (Status))      {          goto ErrorExit; @@ -639,8 +639,8 @@ CmDoCompile (      DbgPrint (ASL_DEBUG_OUTPUT, "\nSemantic analysis - Method analysis\n\n");      TrWalkParseTree (RootNode, ASL_WALK_VISIT_TWICE, -        AnMethodAnalysisWalkBegin, -        AnMethodAnalysisWalkEnd, &AnalysisWalkInfo); +        MtMethodAnalysisWalkBegin, +        MtMethodAnalysisWalkEnd, &AnalysisWalkInfo);      UtEndEvent (Event);      /* Semantic error checking part two - typing of method returns */ @@ -719,11 +719,11 @@ CmDoOutputFiles (      /* Create listings and hex files */      LsDoListings (); -    LsDoHexOutput (); +    HxDoHexOutput ();      /* Dump the namespace to the .nsp file if requested */ -    (void) LsDisplayNamespace (); +    (void) NsDisplayNamespace ();  } @@ -766,12 +766,12 @@ CmDumpAllEvents (              Delta = (UINT32) (Event->EndTime - Event->StartTime); -            USec = Delta / 10; -            MSec = Delta / 10000; +            USec = Delta / ACPI_100NSEC_PER_USEC; +            MSec = Delta / ACPI_100NSEC_PER_MSEC;              /* Round milliseconds up */ -            if ((USec - (MSec * 1000)) >= 500) +            if ((USec - (MSec * ACPI_USEC_PER_MSEC)) >= 500)              {                  MSec++;              } | 
