mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +00:00
Fix typos in comments
svn path=/trunk/; revision=24133
This commit is contained in:
parent
ee7e88e8ec
commit
4094a71f3e
1 changed files with 4 additions and 4 deletions
|
@ -38,11 +38,11 @@
|
||||||
#define RaToPa(p) \
|
#define RaToPa(p) \
|
||||||
(ULONG_PTR)((ULONG_PTR)p + KERNEL_BASE_PHYS)
|
(ULONG_PTR)((ULONG_PTR)p + KERNEL_BASE_PHYS)
|
||||||
|
|
||||||
/* Converts a Phsyical Address Pointer into a Page Frame Number */
|
/* Converts a Physical Address Pointer into a Page Frame Number */
|
||||||
#define PaPtrToPfn(p) \
|
#define PaPtrToPfn(p) \
|
||||||
(((ULONG_PTR)&p) >> PFN_SHIFT)
|
(((ULONG_PTR)&p) >> PFN_SHIFT)
|
||||||
|
|
||||||
/* Converts a Phsyical Address into a Page Frame Number */
|
/* Converts a Physical Address into a Page Frame Number */
|
||||||
#define PaToPfn(p) \
|
#define PaToPfn(p) \
|
||||||
((p) >> PFN_SHIFT)
|
((p) >> PFN_SHIFT)
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ PLOADER_MODULE CurrentModule = NULL;
|
||||||
/* Unrelocated Kernel Base in Virtual Memory */
|
/* Unrelocated Kernel Base in Virtual Memory */
|
||||||
ULONG_PTR KernelBase;
|
ULONG_PTR KernelBase;
|
||||||
|
|
||||||
/* Wether PAE is to be used or not */
|
/* Whether PAE is to be used or not */
|
||||||
BOOLEAN PaeModeEnabled;
|
BOOLEAN PaeModeEnabled;
|
||||||
|
|
||||||
/* Kernel Entrypoint in Physical Memory */
|
/* Kernel Entrypoint in Physical Memory */
|
||||||
|
@ -261,7 +261,7 @@ FrLdrGetKernelBase(VOID)
|
||||||
* FrLdrGetPaeMode
|
* FrLdrGetPaeMode
|
||||||
* INTERNAL
|
* INTERNAL
|
||||||
*
|
*
|
||||||
* Determines whether PAE mode shoudl be enabled or not.
|
* Determines whether PAE mode should be enabled or not.
|
||||||
*
|
*
|
||||||
* Params:
|
* Params:
|
||||||
* None.
|
* None.
|
||||||
|
|
Loading…
Reference in a new issue