Author: tkreuzer
Date: Tue Dec 21 21:48:29 2010
New Revision: 50084
URL:
http://svn.reactos.org/svn/reactos?rev=50084&view=rev
Log:
[NTSOKRNL]
add a comment so that noone will stumble upon this atrocity a second time.
Modified:
trunk/reactos/ntoskrnl/io/iomgr/driver.c
Modified: trunk/reactos/ntoskrnl/io/iomgr/driver.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/driver.c…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/driver.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/driver.c [iso-8859-1] Tue Dec 21 21:48:29 2010
@@ -191,7 +191,7 @@
* Display 'Loading XXX...' message.
*/
-VOID
+VOID
FASTCALL
INIT_FUNCTION
IopDisplayLoadingMessage(PUNICODE_STRING ServiceName)
@@ -993,7 +993,7 @@
&BootEntry->RegistryPath,
KEY_READ);
if ((NT_SUCCESS(Status)) || /* ReactOS HACK for SETUPLDR */
- ((KeLoaderBlock->SetupLdrBlock) && ((KeyHandle = (PVOID)1))))
+ ((KeLoaderBlock->SetupLdrBlock) && ((KeyHandle = (PVOID)1))))
// yes, it's an assignment!
{
/* Save the handle */
DriverInfo->ServiceHandle = KeyHandle;
@@ -1068,24 +1068,24 @@
IopInitializeSystemDrivers(VOID)
{
PUNICODE_STRING *DriverList, *SavedList;
-
+
/* No system drivers on the boot cd */
if (KeLoaderBlock->SetupLdrBlock) return;
-
+
/* Get the driver list */
SavedList = DriverList = CmGetSystemDriverList();
ASSERT(DriverList);
-
+
/* Loop it */
while (*DriverList)
{
/* Load the driver */
ZwLoadDriver(*DriverList);
-
+
/* Free the entry */
RtlFreeUnicodeString(*DriverList);
ExFreePool(*DriverList);
-
+
/* Next entry */
InbvIndicateProgress();
DriverList++;