diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-31 12:09:31 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-31 12:09:31 +0000 |
commit | 2637d1ef354a4db0e3fc676a8985ee40b5401eba (patch) | |
tree | 67c9a6f689cb7cce835952c8953fbfe24c221381 /ArmPlatformPkg/ArmVExpressPkg/Library | |
parent | e100fa8c1e5218865ff6f2c5dd646c2e6ceca49d (diff) | |
download | edk2-platforms-2637d1ef354a4db0e3fc676a8985ee40b5401eba.tar.xz |
ArmPlatformPkg: Use Serial print function to print out non debugging information
Exception errors and early print statements must be also print out in Release builds.
Replace the DEBUG() macro by the SerialPortWrite() function.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11474 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/ArmVExpressPkg/Library')
-rw-r--r-- | ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4.c b/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4.c index 497e0da066..69091d1119 100644 --- a/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4.c +++ b/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4.c @@ -18,6 +18,9 @@ #include <Library/DebugLib.h> #include <Library/PcdLib.h> #include <Drivers/PL341Dmc.h> +#include <Library/SerialPortLib.h> + +#define SerialPrint(txt) SerialPortWrite (txt, AsciiStrLen(txt)+1); // DDR2 timings struct pl341_dmc_config ddr_timings = { |