AsciiToUpper in EdbSupportString.c is an internal function. And we will introduce a public function which has the same name and effect. So we remove its implement. Code in EdbSupportString.c now consumes the public one. https://bugzilla.tianocore.org/show_bug.cgi?id=1369
Cc: Jian J Wang <[email protected]> Cc: Hao Wu <[email protected]> Cc: Star Zeng <[email protected]> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang <[email protected]> --- .../EbcDxe/EbcDebugger/EdbSupportString.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c b/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c index 78a0559079..0eb894ddfb 100644 --- a/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c +++ b/MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbSupportString.c @@ -323,21 +323,6 @@ UnicodeToUpper ( return (Chr >= L'a' && Chr <= L'z') ? Chr - (L'a' - L'A') : Chr; } -/** - - Convert the character to upper case. - - @param Chr the character to be converted. - -**/ -STATIC -CHAR8 -AsciiToUpper ( - IN CHAR8 Chr - ) -{ - return (Chr >= 'a' && Chr <= 'z') ? Chr - ('a' - 'A') : Chr; -} /** Compare the Unicode and Ascii string pointed by String to the string pointed by String2. -- 2.18.0.windows.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

