Use NATIVE_CHAR for strings, changed INTx to UINTx

date	2000.08.14.18.18.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:17:10 +00:00
parent 639059e535
commit b3fdb99684

View File

@ -296,7 +296,7 @@ AcpiNsRootInitialize (void)
goto UnlockAndExit;
}
STRCPY ((INT8 *) ObjDesc->String.Pointer, InitVal->Val);
STRCPY (ObjDesc->String.Pointer, InitVal->Val);
break;
@ -392,7 +392,7 @@ UnlockAndExit:
ACPI_STATUS
AcpiNsLookup (
ACPI_GENERIC_STATE *ScopeInfo,
INT8 *Pathname,
NATIVE_CHAR *Pathname,
OBJECT_TYPE_INTERNAL Type,
OPERATING_MODE InterpreterMode,
UINT32 Flags,
@ -606,7 +606,7 @@ AcpiNsLookup (
else if (*Pathname == AML_MULTI_NAME_PREFIX_OP)
{
NumSegments = (INT32)* (UINT8 *) ++Pathname;
NumSegments = (UINT32)* (UINT8 *) ++Pathname;
/* point to first segment */