summaryrefslogtreecommitdiffstats
path: root/src/build/debug/Hostboot/_DebugFrameworkVMM.pm
diff options
context:
space:
mode:
Diffstat (limited to 'src/build/debug/Hostboot/_DebugFrameworkVMM.pm')
-rwxr-xr-xsrc/build/debug/Hostboot/_DebugFrameworkVMM.pm17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/build/debug/Hostboot/_DebugFrameworkVMM.pm b/src/build/debug/Hostboot/_DebugFrameworkVMM.pm
index f8fb15488..a4e5bef03 100755
--- a/src/build/debug/Hostboot/_DebugFrameworkVMM.pm
+++ b/src/build/debug/Hostboot/_DebugFrameworkVMM.pm
@@ -614,14 +614,17 @@ sub getPhysicalAddr
::userDisplay (" \nVirtualToPhy: ERROR.. VA Address is out of range.\n");
}
- if (($phyAddr eq Hostboot::_DebugFrameworkVMM::NotFound) ||
- ($phyAddr eq Hostboot::_DebugFrameworkVMM::NotPresent))
- {
- ::userDisplay ("\n The Physical Address = $phyAddr\n");
- }
- else
+ if ($debug)
{
- ::userDisplay (sprintf "\n The Physical Address = %X\n\n" , $phyAddr);
+ if (($phyAddr eq Hostboot::_DebugFrameworkVMM::NotFound) ||
+ ($phyAddr eq Hostboot::_DebugFrameworkVMM::NotPresent))
+ {
+ ::userDisplay ("\n The Physical Address = $phyAddr\n");
+ }
+ else
+ {
+ ::userDisplay (sprintf "\n The Physical Address = %X\n\n" , $phyAddr);
+ }
}
return $phyAddr;
OpenPOWER on IntegriCloud