mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTOS:KE] Minor formatting fixes.
This commit is contained in:
parent
592f01a594
commit
b2ca7d3ed9
2 changed files with 5 additions and 8 deletions
|
@ -73,7 +73,7 @@ KiInitMachineDependent(VOID)
|
|||
DPRINT("PAT support detected but not yet taken advantage of!\n");
|
||||
}
|
||||
|
||||
/* Allocate the IOPM save area. */
|
||||
// /* Allocate the IOPM save area */
|
||||
// Ki386IopmSaveArea = ExAllocatePoolWithTag(PagedPool,
|
||||
// PAGE_SIZE * 2,
|
||||
// TAG('K', 'e', ' ', ' '));
|
||||
|
|
|
@ -588,7 +588,7 @@ KiInitializeKernel(IN PKPROCESS InitProcess,
|
|||
if (!DpcStack) KeBugCheckEx(NO_PAGES_AVAILABLE, 1, 0, 0, 0);
|
||||
Prcb->DpcStack = DpcStack;
|
||||
|
||||
/* Allocate the IOPM save area. */
|
||||
/* Allocate the IOPM save area */
|
||||
Ki386IopmSaveArea = ExAllocatePoolWithTag(PagedPool,
|
||||
PAGE_SIZE * 2,
|
||||
' eK');
|
||||
|
@ -600,8 +600,7 @@ KiInitializeKernel(IN PKPROCESS InitProcess,
|
|||
}
|
||||
|
||||
/* Raise to Dispatch */
|
||||
KeRaiseIrql(DISPATCH_LEVEL,
|
||||
&DummyIrql);
|
||||
KeRaiseIrql(DISPATCH_LEVEL, &DummyIrql);
|
||||
|
||||
/* Set the Idle Priority to 0. This will jump into Phase 1 */
|
||||
KeSetPriorityThread(InitThread, 0);
|
||||
|
@ -612,8 +611,7 @@ KiInitializeKernel(IN PKPROCESS InitProcess,
|
|||
KiReleasePrcbLock(Prcb);
|
||||
|
||||
/* Raise back to HIGH_LEVEL and clear the PRCB for the loader block */
|
||||
KeRaiseIrql(HIGH_LEVEL,
|
||||
&DummyIrql);
|
||||
KeRaiseIrql(HIGH_LEVEL, &DummyIrql);
|
||||
LoaderBlock->Prcb = 0;
|
||||
}
|
||||
|
||||
|
@ -835,8 +833,7 @@ AppCpuInit:
|
|||
}
|
||||
|
||||
/* Raise to HIGH_LEVEL */
|
||||
KeRaiseIrql(HIGH_LEVEL,
|
||||
&DummyIrql);
|
||||
KeRaiseIrql(HIGH_LEVEL, &DummyIrql);
|
||||
|
||||
/* Switch to new kernel stack and start kernel bootstrapping */
|
||||
KiSwitchToBootStack(InitialStack & ~3);
|
||||
|
|
Loading…
Reference in a new issue