Modify a virtual address check to allow use of the openfirmware callback

used by the PowerPC simulator (PSIM).
This commit is contained in:
Mark Peek 2001-10-12 19:55:04 +00:00
parent 03ea73346d
commit f57f841372
2 changed files with 2 additions and 2 deletions

View File

@ -643,7 +643,7 @@ restore_ofw_mapping()
vm_offset_t va = ofw_mapping[i].va;
int size = ofw_mapping[i].len;
if (va < 0x90000000) /* XXX */
if (va < 0x80000000) /* XXX */
continue;
while (size > 0) {

View File

@ -643,7 +643,7 @@ restore_ofw_mapping()
vm_offset_t va = ofw_mapping[i].va;
int size = ofw_mapping[i].len;
if (va < 0x90000000) /* XXX */
if (va < 0x80000000) /* XXX */
continue;
while (size > 0) {