summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Universal/PrintDxe/Print.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Universal/PrintDxe/Print.c')
-rw-r--r--MdeModulePkg/Universal/PrintDxe/Print.c37
1 files changed, 6 insertions, 31 deletions
diff --git a/MdeModulePkg/Universal/PrintDxe/Print.c b/MdeModulePkg/Universal/PrintDxe/Print.c
index c417a2c811..95a81d0c19 100644
--- a/MdeModulePkg/Universal/PrintDxe/Print.c
+++ b/MdeModulePkg/Universal/PrintDxe/Print.c
@@ -17,7 +17,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
/**
Implementaion of the UnicodeValueToString service in EFI_PRINT2_PROTOCOL.
- If the macro DISABLE_NEW_DEPRECATED_INTERFACES is defined, then ASSERT().
@param Buffer The pointer to the output buffer for the produced
Null-terminated Unicode string.
@@ -27,9 +26,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
@param Width The maximum number of Unicode characters to place in Buffer,
not including the Null-terminator.
- @return If the macro DISABLE_NEW_DEPRECATED_INTERFACES is defined, return 0.
- Otherwise, return the number of Unicode characters in Buffer not
- including the Null-terminator.
+ @return 0.
+
**/
UINTN
@@ -41,28 +39,16 @@ PrintDxeUnicodeValueToString (
IN UINTN Width
)
{
-#ifdef DISABLE_NEW_DEPRECATED_INTERFACES
- //
- // If the macro DISABLE_NEW_DEPRECATED_INTERFACES is defined, then the
- // PrintLib API UnicodeValueToString is already deprecated.
- // In this case, ASSERT will be triggered and zero will be returned for the
- // implementation of the UnicodeValueToString service in EFI_PRINT2_PROTOCOL
- // to indicate that the service is no longer supported.
- //
DEBUG ((DEBUG_ERROR, "PrintDxe: The UnicodeValueToString service in EFI_PRINT2_PROTOCOL is no longer supported for security reason.\n"));
DEBUG ((DEBUG_ERROR, "PrintDxe: Please consider using the UnicodeValueToStringS service in EFI_PRINT2S_PROTOCOL.\n"));
ASSERT (FALSE);
return 0;
-#else
- return UnicodeValueToString (Buffer, Flags, Value, Width);
-#endif
+
}
/**
Implementaion of the AsciiValueToString service in EFI_PRINT2_PROTOCOL.
- If the macro DISABLE_NEW_DEPRECATED_INTERFACES is defined, then ASSERT().
-
@param Buffer A pointer to the output buffer for the produced
Null-terminated ASCII string.
@param Flags The bitmask of flags that specify left justification, zero
@@ -71,9 +57,7 @@ PrintDxeUnicodeValueToString (
@param Width The maximum number of ASCII characters to place in Buffer,
not including the Null-terminator.
- @return If the macro DISABLE_NEW_DEPRECATED_INTERFACES is defined, return 0.
- Otherwise, return the number of ASCII characters in Buffer not
- including the Null-terminator.
+ @return 0.
**/
UINTN
@@ -85,21 +69,12 @@ PrintDxeAsciiValueToString (
IN UINTN Width
)
{
-#ifdef DISABLE_NEW_DEPRECATED_INTERFACES
- //
- // If the macro DISABLE_NEW_DEPRECATED_INTERFACES is defined, then the
- // PrintLib API AsciiValueToString is already deprecated.
- // In this case, ASSERT will be triggered and zero will be returned for the
- // implementation of the AsciiValueToString service in EFI_PRINT2_PROTOCOL
- // to indicate that the service is no longer supported.
- //
+
DEBUG ((DEBUG_ERROR, "PrintDxe: The AsciiValueToString service in EFI_PRINT2_PROTOCOL is no longer supported for security reason.\n"));
DEBUG ((DEBUG_ERROR, "PrintDxe: Please consider using the AsciiValueToStringS service in EFI_PRINT2S_PROTOCOL.\n"));
ASSERT (FALSE);
return 0;
-#else
- return AsciiValueToString (Buffer, Flags, Value, Width);
-#endif
+
}
EFI_HANDLE mPrintThunkHandle = NULL;