mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
Update Coding style of status code.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1435 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
abce9cbd99
commit
afaa1b87a4
@ -149,7 +149,7 @@ ReportDispatcher (
|
|||||||
// Use atom operation to avoid the reentant of report.
|
// Use atom operation to avoid the reentant of report.
|
||||||
// If current status is not zero, then the function is reentrancy.
|
// If current status is not zero, then the function is reentrancy.
|
||||||
//
|
//
|
||||||
if (InterlockedCompareExchange32 (&gDxeStatusCode.StatusCodeNestStatus, 0, 1)) {
|
if (1 == InterlockedCompareExchange32 (&gDxeStatusCode.StatusCodeNestStatus, 0, 1)) {
|
||||||
return EFI_DEVICE_ERROR;
|
return EFI_DEVICE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,6 +111,7 @@ FreeRecordBuffer (
|
|||||||
@param Data This optional parameter may be used to pass additional data
|
@param Data This optional parameter may be used to pass additional data
|
||||||
|
|
||||||
@retval EFI_OUT_OF_RESOURCES Can not acquire record buffer.
|
@retval EFI_OUT_OF_RESOURCES Can not acquire record buffer.
|
||||||
|
@retval EFI_DEVICE_ERROR EFI serial device can not work after ExitBootService() is called .
|
||||||
@retval EFI_SUCCESS Success to cache status code and signal log data event.
|
@retval EFI_SUCCESS Success to cache status code and signal log data event.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
@ -133,10 +134,10 @@ DataHubStatusCodeReportWorker (
|
|||||||
// See whether in runtime phase or not.
|
// See whether in runtime phase or not.
|
||||||
//
|
//
|
||||||
if (EfiAtRuntime ()) {
|
if (EfiAtRuntime ()) {
|
||||||
return EFI_SUCCESS;
|
return EFI_DEVICE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
Record = (DATAHUB_STATUSCODE_RECORD *) AcquireRecordBuffer ();
|
Record = AcquireRecordBuffer ();
|
||||||
if (Record == NULL) {
|
if (Record == NULL) {
|
||||||
//
|
//
|
||||||
// There are no empty record buffer in private buffers
|
// There are no empty record buffer in private buffers
|
||||||
|
@ -125,7 +125,7 @@ SerialStatusCodeReportWorker (
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Data) {
|
if (Data != NULL) {
|
||||||
CharCount += AsciiSPrint (
|
CharCount += AsciiSPrint (
|
||||||
&Buffer[CharCount - 1],
|
&Buffer[CharCount - 1],
|
||||||
(EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
|
(EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user