UefiCpuPkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the UefiCpuPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
91415a36ae
commit
053e878bfb
@@ -14,9 +14,9 @@
|
||||
///
|
||||
/// Page Table Entry
|
||||
///
|
||||
#define IA32_PG_P BIT0
|
||||
#define IA32_PG_RW BIT1
|
||||
#define IA32_PG_PS BIT7
|
||||
#define IA32_PG_P BIT0
|
||||
#define IA32_PG_RW BIT1
|
||||
#define IA32_PG_PS BIT7
|
||||
|
||||
/**
|
||||
|
||||
@@ -28,22 +28,22 @@
|
||||
**/
|
||||
VOID
|
||||
StmGen4GPageTable (
|
||||
IN UINTN PageTableBase
|
||||
IN UINTN PageTableBase
|
||||
)
|
||||
{
|
||||
UINTN Index;
|
||||
UINTN SubIndex;
|
||||
UINT64 *Pde;
|
||||
UINT64 *Pte;
|
||||
UINT64 *Pml4;
|
||||
UINTN Index;
|
||||
UINTN SubIndex;
|
||||
UINT64 *Pde;
|
||||
UINT64 *Pte;
|
||||
UINT64 *Pml4;
|
||||
|
||||
Pml4 = (UINT64*)(UINTN)PageTableBase;
|
||||
Pml4 = (UINT64 *)(UINTN)PageTableBase;
|
||||
PageTableBase += SIZE_4KB;
|
||||
*Pml4 = PageTableBase | IA32_PG_RW | IA32_PG_P;
|
||||
*Pml4 = PageTableBase | IA32_PG_RW | IA32_PG_P;
|
||||
|
||||
Pde = (UINT64*)(UINTN)PageTableBase;
|
||||
Pde = (UINT64 *)(UINTN)PageTableBase;
|
||||
PageTableBase += SIZE_4KB;
|
||||
Pte = (UINT64 *)(UINTN)PageTableBase;
|
||||
Pte = (UINT64 *)(UINTN)PageTableBase;
|
||||
|
||||
for (Index = 0; Index < 4; Index++) {
|
||||
*Pde = PageTableBase | IA32_PG_RW | IA32_PG_P;
|
||||
@@ -75,7 +75,7 @@ StmGen4GPageTable (
|
||||
UINT32
|
||||
EFIAPI
|
||||
SmmStmExceptionHandler (
|
||||
IN OUT STM_PROTECTION_EXCEPTION_STACK_FRAME Context
|
||||
IN OUT STM_PROTECTION_EXCEPTION_STACK_FRAME Context
|
||||
)
|
||||
{
|
||||
// TBD - SmmStmExceptionHandler, record information
|
||||
|
Reference in New Issue
Block a user