OvmfPkg/BaseMemEncryptSevLib: clean up DEBUG prefixes

The prefix for the SetMemoryEncDec() DEBUG messages should be

  "ModuleName:FunctionName: "

not

  "ModuleName:FunctionName "

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:
Laszlo Ersek 2017-08-30 13:15:29 +02:00
parent 6692af92b1
commit 6c72134dff
1 changed files with 7 additions and 7 deletions

View File

@ -288,7 +288,7 @@ SetMemoryEncDec (
if (!PageMapLevel4Entry->Bits.Present) {
DEBUG ((
DEBUG_WARN,
"%a:%a ERROR bad PML4 for %lx\n",
"%a:%a: ERROR bad PML4 for %lx\n",
gEfiCallerBaseName,
__FUNCTION__,
PhysicalAddress
@ -301,7 +301,7 @@ SetMemoryEncDec (
if (!PageDirectory1GEntry->Bits.Present) {
DEBUG ((
DEBUG_WARN,
"%a:%a ERROR bad PDPE for %lx\n",
"%a:%a: ERROR bad PDPE for %lx\n",
gEfiCallerBaseName,
__FUNCTION__,
PhysicalAddress
@ -321,7 +321,7 @@ SetMemoryEncDec (
SetOrClearCBit(&PageDirectory1GEntry->Uint64, Mode);
DEBUG ((
DEBUG_VERBOSE,
"%a:%a Updated 1GB entry for %lx\n",
"%a:%a: Updated 1GB entry for %lx\n",
gEfiCallerBaseName,
__FUNCTION__,
PhysicalAddress
@ -334,7 +334,7 @@ SetMemoryEncDec (
//
DEBUG ((
DEBUG_VERBOSE,
"%a:%a Spliting 1GB page\n",
"%a:%a: Spliting 1GB page\n",
gEfiCallerBaseName,
__FUNCTION__
));
@ -351,7 +351,7 @@ SetMemoryEncDec (
if (!PageDirectory2MEntry->Bits.Present) {
DEBUG ((
DEBUG_WARN,
"%a:%a ERROR bad PDE for %lx\n",
"%a:%a: ERROR bad PDE for %lx\n",
gEfiCallerBaseName,
__FUNCTION__,
PhysicalAddress
@ -376,7 +376,7 @@ SetMemoryEncDec (
//
DEBUG ((
DEBUG_VERBOSE,
"%a:%a Spliting 2MB page at %lx\n",
"%a:%a: Spliting 2MB page at %lx\n",
gEfiCallerBaseName,
__FUNCTION__,
PhysicalAddress
@ -391,7 +391,7 @@ SetMemoryEncDec (
if (!PageTableEntry->Bits.Present) {
DEBUG ((
DEBUG_WARN,
"%a:%a ERROR bad PTE for %lx\n",
"%a:%a: ERROR bad PTE for %lx\n",
gEfiCallerBaseName,
__FUNCTION__,
PhysicalAddress