mirror of https://github.com/acidanthera/audk.git
Remove the undefined logic to process gEfiStatusCodeSpecificDataGuid status code data.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7076 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
0ecc0cb07c
commit
165aba19f5
|
@ -51,9 +51,5 @@
|
|||
HobLib
|
||||
DebugLib
|
||||
|
||||
|
||||
[Guids]
|
||||
gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED
|
||||
|
||||
[Protocols]
|
||||
gEfiWinNtThunkProtocolGuid # ALWAYS_CONSUMED
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#include <FrameworkDxe.h>
|
||||
#include <FrameworkModuleDxe.h>
|
||||
#include <WinNtDxe.h>
|
||||
#include <DebugInfo.h>
|
||||
|
||||
//
|
||||
// The protocols, PPI and GUID defintions for this module
|
||||
|
@ -124,7 +123,6 @@ OemHookStatusCodeReport (
|
|||
UINT32 LineNumber;
|
||||
UINTN CharCount;
|
||||
VA_LIST Marker;
|
||||
EFI_DEBUG_INFO *DebugInfo;
|
||||
|
||||
Buffer[0] = '\0';
|
||||
|
||||
|
@ -166,17 +164,6 @@ OemHookStatusCodeReport (
|
|||
Format,
|
||||
Marker
|
||||
);
|
||||
} else if (Data != NULL &&
|
||||
CompareGuid (&Data->Type, &gEfiStatusCodeSpecificDataGuid) &&
|
||||
(CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_DEBUG_CODE) {
|
||||
//
|
||||
// Print specific data into output buffer.
|
||||
//
|
||||
DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
|
||||
Marker = (VA_LIST) (DebugInfo + 1);
|
||||
Format = (CHAR8 *) (((UINT64 *) Marker) + 12);
|
||||
|
||||
CharCount = AsciiVSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, Format, Marker);
|
||||
} else if ((CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_ERROR_CODE) {
|
||||
//
|
||||
// Print ERROR information into output buffer.
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/ReportStatusCodeLib.h>
|
||||
#include <Library/PeiServicesLib.h>
|
||||
#include <DebugInfo.h>
|
||||
|
||||
//
|
||||
// Cache of WinNtThunk protocol
|
||||
|
@ -133,7 +132,6 @@ OemHookStatusCodeReport (
|
|||
UINT32 LineNumber;
|
||||
UINTN CharCount;
|
||||
VA_LIST Marker;
|
||||
EFI_DEBUG_INFO *DebugInfo;
|
||||
|
||||
Buffer[0] = '\0';
|
||||
|
||||
|
@ -175,17 +173,6 @@ OemHookStatusCodeReport (
|
|||
Format,
|
||||
Marker
|
||||
);
|
||||
} else if (Data != NULL &&
|
||||
CompareGuid (&Data->Type, &gEfiStatusCodeSpecificDataGuid) &&
|
||||
(CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_DEBUG_CODE) {
|
||||
//
|
||||
// Print specific data into output buffer.
|
||||
//
|
||||
DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
|
||||
Marker = (VA_LIST) (DebugInfo + 1);
|
||||
Format = (CHAR8 *) (((UINT64 *) Marker) + 12);
|
||||
|
||||
CharCount = AsciiVSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, Format, Marker);
|
||||
} else if ((CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_ERROR_CODE) {
|
||||
//
|
||||
// Print ERROR information into output buffer.
|
||||
|
|
|
@ -49,11 +49,6 @@
|
|||
PrintLib
|
||||
DebugLib
|
||||
|
||||
|
||||
[Guids]
|
||||
gEfiStatusCodeSpecificDataGuid # SOMETIMES_CONSUMED
|
||||
|
||||
|
||||
[Ppis]
|
||||
gPeiNtThunkPpiGuid # PPI ALWAYS_CONSUMED
|
||||
|
||||
|
|
Loading…
Reference in New Issue