This commit was generated by cvs2svn to compensate for changes in r118765,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
njl 2003-08-11 05:54:31 +00:00
commit c2c22b4cf0

View File

@ -452,10 +452,10 @@ AcpiOsGetLine (
ACPI_STATUS ACPI_STATUS
AcpiOsMapMemory ( AcpiOsMapMemory (
ACPI_PHYSICAL_ADDRESS where, ACPI_PHYSICAL_ADDRESS where,
UINT32 length, ACPI_SIZE length,
void **there) void **there)
{ {
*there = (void *) (UINT32) where; *there = (void *) (uintptr_t) where;
return AE_OK; return AE_OK;
} }