Minor style fixes
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 34s
Builds / ExectOS (i686, release) (push) Successful in 32s
Builds / ExectOS (amd64, debug) (push) Successful in 54s
Builds / ExectOS (i686, debug) (push) Successful in 51s

This commit is contained in:
2026-02-06 20:52:59 +01:00
parent 0ce2741e18
commit 2e0e085acb
3 changed files with 9 additions and 9 deletions

View File

@@ -14,10 +14,10 @@
* Allocates and initializes page directory structures for a range of PDEs. * Allocates and initializes page directory structures for a range of PDEs.
* *
* @param StartingPde * @param StartingPde
* Supplies a pointer to the first PDE in the range to initialize * Supplies a pointer to the first PDE in the range to initialize.
* *
* @param EndingPde * @param EndingPde
* Supplies a pointer to the last PDE in the range to initialize * Supplies a pointer to the last PDE in the range to initialize.
* *
* @return This routine does not return any value. * @return This routine does not return any value.
* *

View File

@@ -14,10 +14,10 @@
* Allocates and initializes page directory structures for a range of PDEs. * Allocates and initializes page directory structures for a range of PDEs.
* *
* @param StartingPde * @param StartingPde
* Supplies a pointer to the first PDE in the range to initialize * Supplies a pointer to the first PDE in the range to initialize.
* *
* @param EndingPde * @param EndingPde
* Supplies a pointer to the last PDE in the range to initialize * Supplies a pointer to the last PDE in the range to initialize.
* *
* @return This routine does not return any value. * @return This routine does not return any value.
* *

View File

@@ -684,7 +684,7 @@ MM::Pfn::LinkPage(IN PMMPFNLIST ListHead,
PageFrame->u2.Blink = ListHead->Blink; PageFrame->u2.Blink = ListHead->Blink;
} }
/* Record the pages current location */ /* Record the page's current location */
PageFrame->u3.e1.PageLocation = ListName; PageFrame->u3.e1.PageLocation = ListName;
/* Handle pages that contribute to the available page count */ /* Handle pages that contribute to the available page count */
@@ -943,16 +943,16 @@ MM::Pfn::LinkStandbyPage(IN PFN_NUMBER PageFrameIndex)
} }
/** /**
* Processes a memory descriptor and initializes the corresponding PFN database entries * Processes a memory descriptor and initializes the corresponding PFN database entries.
* *
* @param BasePage * @param BasePage
* The starting physical page number of the memory run * The starting physical page number of the memory run.
* *
* @param PageCount * @param PageCount
* The number of pages in the memory run * The number of pages in the memory run.
* *
* @param MemoryType * @param MemoryType
* The type of memory as reported by the bootloader (e.g., free, ROM, in-use) * The type of memory as reported by the bootloader (e.g., free, ROM, in-use).
* *
* @return This routine does not return any value. * @return This routine does not return any value.
* *