Don't try and update the MMU mappings when claiming physical memory. This is probably related to r737 and seems to solve an

issue whereby Forth starts doing strange things just after attemping a claim on physical memory resource.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@739 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Mark Cave-Ayland
2010-04-10 11:08:57 +00:00
committed by Mark Cave-Ayland
parent b265b42d58
commit 35a7ef00a2

View File

@@ -401,8 +401,6 @@ static ucell ofmem_claim_phys_( ucell phys, ucell size, ucell align,
}
add_entry( phys, size, &ofmem->phys_range );
ofmem_update_translations();
return phys;
}