- comment out an ASSERT for now
- add Mdl flag MDL_PAGES_LOCKED
- remove obsolete DriverEntry

svn path=/branches/ros-amd64-bringup/; revision=44983
This commit is contained in:
Timo Kreuzer
2010-01-06 23:03:19 +00:00
parent 042bc809cf
commit f6bd1f70d8
3 changed files with 5 additions and 14 deletions
@@ -40,17 +40,6 @@ HalpGetParameters(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
/* FUNCTIONS *****************************************************************/
NTSTATUS
NTAPI
DriverEntry(
PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath)
{
UNIMPLEMENTED;
return STATUS_SUCCESS;
}
/*
* @implemented
*/
+1 -1
View File
@@ -156,7 +156,7 @@ KeQueryPerformanceCounter(
{
LARGE_INTEGER Result;
ASSERT(HalpPerformanceFrequency.QuadPart != 0);
// ASSERT(HalpPerformanceFrequency.QuadPart != 0);
/* Does the caller want the frequency? */
if (PerformanceFrequency)
+4 -2
View File
@@ -1,7 +1,7 @@
/*
* PROJECT: ReactOS HAL
* LICENSE: See COPYING in the top level directory
* FILE: hal/halamd64/generic/x86bios.c
* LICENSE: GPL, See COPYING in the top level directory
* FILE: hal/halx86/generic/amd64/x86bios.c
* PURPOSE:
* PROGRAMMERS: Timo Kreuzer ([email protected])
*/
@@ -75,6 +75,8 @@ HalInitializeBios(ULONG Unknown, PLOADER_PARAMETER_BLOCK LoaderBlock)
}
}
Mdl->MdlFlags = MDL_PAGES_LOCKED;
/* Map the MDL to system space */
x86BiosMemoryMapping = MmGetSystemAddressForMdlSafe(Mdl, HighPagePriority);
ASSERT(x86BiosMemoryMapping);