mirror of https://github.com/acidanthera/audk.git
OvmfPkg/BaseMemEncryptSevLib: clean up upper-case / lower-case in DEBUGs
Debug messages that start as natural (English) language phrases (after the debug prefix) should uniformly begin with lower-case or upper-case. In SetMemoryEncDec() we have a mixture now. Stick with lower-case. (Upper-case is better for full sentences that also end with punctuation.) Cc: Brijesh Singh <brijesh.singh@amd.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Brijesh Singh <brijesh.singh@amd.com> Tested-by: Brijesh Singh <brijesh.singh@amd.com>
This commit is contained in:
parent
3728ea5a95
commit
5597edfa8b
|
@ -321,7 +321,7 @@ SetMemoryEncDec (
|
|||
SetOrClearCBit(&PageDirectory1GEntry->Uint64, Mode);
|
||||
DEBUG ((
|
||||
DEBUG_VERBOSE,
|
||||
"%a:%a: Updated 1GB entry for Physical=0x%Lx\n",
|
||||
"%a:%a: updated 1GB entry for Physical=0x%Lx\n",
|
||||
gEfiCallerBaseName,
|
||||
__FUNCTION__,
|
||||
PhysicalAddress
|
||||
|
@ -334,7 +334,7 @@ SetMemoryEncDec (
|
|||
//
|
||||
DEBUG ((
|
||||
DEBUG_VERBOSE,
|
||||
"%a:%a: Spliting 1GB page for Physical=0x%Lx\n",
|
||||
"%a:%a: spliting 1GB page for Physical=0x%Lx\n",
|
||||
gEfiCallerBaseName,
|
||||
__FUNCTION__,
|
||||
PhysicalAddress
|
||||
|
@ -377,7 +377,7 @@ SetMemoryEncDec (
|
|||
//
|
||||
DEBUG ((
|
||||
DEBUG_VERBOSE,
|
||||
"%a:%a: Spliting 2MB page for Physical=0x%Lx\n",
|
||||
"%a:%a: spliting 2MB page for Physical=0x%Lx\n",
|
||||
gEfiCallerBaseName,
|
||||
__FUNCTION__,
|
||||
PhysicalAddress
|
||||
|
|
Loading…
Reference in New Issue