mirror of https://github.com/acidanthera/audk.git
Handle gEfiStatusCodeDataTypeStringGuid in status code drivers.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10717 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
96a2516355
commit
5d4a0dbc91
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Serial I/O status code reporting worker.
|
Serial I/O status code reporting worker.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -126,6 +126,17 @@ SerialStatusCodeReportWorker (
|
||||||
Value,
|
Value,
|
||||||
Instance
|
Instance
|
||||||
);
|
);
|
||||||
|
} else if (CompareGuid (&Data->Type, &gEfiStatusCodeDataTypeStringGuid) &&
|
||||||
|
((EFI_STATUS_CODE_STRING_DATA *) Data)->StringType == EfiStringAscii) {
|
||||||
|
//
|
||||||
|
// EFI_STATUS_CODE_STRING_DATA
|
||||||
|
//
|
||||||
|
CharCount = AsciiSPrint (
|
||||||
|
Buffer,
|
||||||
|
sizeof (Buffer),
|
||||||
|
"%a\n\r",
|
||||||
|
((EFI_STATUS_CODE_STRING_DATA *) Data)->String.Ascii
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
//
|
//
|
||||||
// Code type is not defined.
|
// Code type is not defined.
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
gMemoryStatusCodeRecordGuid ## SOMETIMES_CONSUMES ## HOB
|
gMemoryStatusCodeRecordGuid ## SOMETIMES_CONSUMES ## HOB
|
||||||
|
gEfiStatusCodeDataTypeStringGuid ## CONSUMES
|
||||||
|
|
||||||
[Ppis]
|
[Ppis]
|
||||||
gEfiPeiStatusCodePpiGuid ## PRODUCES
|
gEfiPeiStatusCodePpiGuid ## PRODUCES
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Serial I/O status code reporting worker.
|
Serial I/O status code reporting worker.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -124,6 +124,17 @@ SerialStatusCodeReportWorker (
|
||||||
Value,
|
Value,
|
||||||
Instance
|
Instance
|
||||||
);
|
);
|
||||||
|
} else if (CompareGuid (&Data->Type, &gEfiStatusCodeDataTypeStringGuid) &&
|
||||||
|
((EFI_STATUS_CODE_STRING_DATA *) Data)->StringType == EfiStringAscii) {
|
||||||
|
//
|
||||||
|
// EFI_STATUS_CODE_STRING_DATA
|
||||||
|
//
|
||||||
|
CharCount = AsciiSPrint (
|
||||||
|
Buffer,
|
||||||
|
sizeof (Buffer),
|
||||||
|
"%a\n\r",
|
||||||
|
((EFI_STATUS_CODE_STRING_DATA *) Data)->String.Ascii
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
//
|
//
|
||||||
// Code type is not defined.
|
// Code type is not defined.
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
gEfiStatusCodeDataTypeDebugGuid ## SOMETIMES_CONSUMES (Needed if Data Hub is supported for status code.)
|
gEfiStatusCodeDataTypeDebugGuid ## SOMETIMES_CONSUMES (Needed if Data Hub is supported for status code.)
|
||||||
gMemoryStatusCodeRecordGuid ## CONSUMES ## HOB
|
gMemoryStatusCodeRecordGuid ## CONSUMES ## HOB
|
||||||
gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event
|
gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event
|
||||||
|
gEfiStatusCodeDataTypeStringGuid ## CONSUMES
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
gEfiStatusCodeRuntimeProtocolGuid ## PRODUCES
|
gEfiStatusCodeRuntimeProtocolGuid ## PRODUCES
|
||||||
|
|
Loading…
Reference in New Issue