My hack isn't needed anymore.

svn path=/trunk/; revision=28829
This commit is contained in:
Art Yerkes 2007-09-03 23:03:33 +00:00
parent ccf991c1b7
commit 9786ea3b93

View file

@ -19,9 +19,6 @@
#include <freeldr.h>
#include <debug.h>
#ifdef _M_PPC
#include "of.h"
#endif
ULONG AllocationCount = 0;
@ -85,17 +82,6 @@ PVOID MmAllocateMemory(ULONG MemorySize)
// satisfy this allocation
PagesNeeded = ROUND_UP(MemorySize, MM_PAGE_SIZE) / MM_PAGE_SIZE;
#ifdef _M_PPC
{
// We don't have enough reserve, claim some memory from openfirmware
ULONG ptr;
ptr = ofw_claim(0,MemorySize,MM_PAGE_SIZE);
MemPointer = (PVOID)(ptr);
if (MemPointer)
return MemPointer;
}
#endif
// If we don't have enough available mem
// then return NULL
if (FreePagesInLookupTable < PagesNeeded)