mirror of
https://github.com/acpica/acpica/
synced 2025-02-28 19:35:03 +03:00
allow 100 mismatches; Added new stubs
date 2002.05.29.19.16.00; author rmoore1; state Exp;
This commit is contained in:
parent
c05bddbf3b
commit
2b99282cf7
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: abcompare - compare AML files
|
||||
* $Revision: 1.9 $
|
||||
* $Revision: 1.11 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -244,9 +244,9 @@ AbCompareAmlFiles (
|
||||
{
|
||||
printf ("Error - Byte mismatch at offset %8.8X: 0x%2.2X 0x%2.2X\n", Offset, Char1, Char2);
|
||||
Mismatches++;
|
||||
if (Mismatches > 10)
|
||||
if (Mismatches > 100)
|
||||
{
|
||||
printf ("10 Mismatches: Too many mismatches\n");
|
||||
printf ("100 Mismatches: Too many mismatches\n");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -374,21 +374,9 @@ AbDumpAmlFile (
|
||||
|
||||
#define DB_CONSOLE_OUTPUT 0x02
|
||||
|
||||
FILE *DebugFile = NULL;
|
||||
FILE *AcpiGbl_DebugFile = NULL;
|
||||
UINT8 AcpiGbl_DbOutputFlags = DB_CONSOLE_OUTPUT ;
|
||||
|
||||
|
||||
void *
|
||||
AcpiUtCallocate (
|
||||
UINT32 Size,
|
||||
UINT32 Component,
|
||||
NATIVE_CHAR *Module,
|
||||
UINT32 Line)
|
||||
{
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void
|
||||
AcpiUtFree (
|
||||
void *Address,
|
||||
@ -408,3 +396,12 @@ AcpiUtMemset (
|
||||
{
|
||||
return (Dest);
|
||||
}
|
||||
|
||||
ACPI_STATUS
|
||||
AeLocalGetRootPointer (
|
||||
UINT32 Flags,
|
||||
ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress)
|
||||
{
|
||||
return AE_OK;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user