mirror of https://github.com/acidanthera/audk.git
code review's result.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5633 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4a9cfab5a4
commit
584125bcba
|
@ -111,7 +111,7 @@ DebugPrint (
|
||||||
DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then
|
DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then
|
||||||
CpuDeadLoop() is called. If neither of these bits are set, then this function
|
CpuDeadLoop() is called. If neither of these bits are set, then this function
|
||||||
returns immediately after the message is printed to the debug output device.
|
returns immediately after the message is printed to the debug output device.
|
||||||
DebugAssert() must actively prevent recusrsion. If DebugAssert() is called while
|
DebugAssert() must actively prevent recursion. If DebugAssert() is called while
|
||||||
processing another DebugAssert(), then DebugAssert() must return immediately.
|
processing another DebugAssert(), then DebugAssert() must return immediately.
|
||||||
|
|
||||||
If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.
|
If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.
|
||||||
|
|
|
@ -98,12 +98,12 @@ DebugPrint (
|
||||||
DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then
|
DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then
|
||||||
CpuDeadLoop() is called. If neither of these bits are set, then this function
|
CpuDeadLoop() is called. If neither of these bits are set, then this function
|
||||||
returns immediately after the message is printed to the debug output device.
|
returns immediately after the message is printed to the debug output device.
|
||||||
DebugAssert() must actively prevent recusrsion. If DebugAssert() is called while
|
DebugAssert() must actively prevent recursion. If DebugAssert() is called while
|
||||||
processing another DebugAssert(), then DebugAssert() must return immediately.
|
processing another DebugAssert(), then DebugAssert() must return immediately.
|
||||||
|
|
||||||
If FileName is NULL, then a <FileName> string of ?NULL) Filename?is printed.
|
If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.
|
||||||
|
|
||||||
If Description is NULL, then a <Description> string of ?NULL) Description?is printed.
|
If Description is NULL, then a <Description> string of "(NULL) Description" is printed.
|
||||||
|
|
||||||
@param FileName Pointer to the name of the source file that generated the assert condition.
|
@param FileName Pointer to the name of the source file that generated the assert condition.
|
||||||
@param LineNumber The line number in the source file that generated the assert condition
|
@param LineNumber The line number in the source file that generated the assert condition
|
||||||
|
@ -128,7 +128,7 @@ DebugAssert (
|
||||||
|
|
||||||
If Buffer is NULL, then ASSERT().
|
If Buffer is NULL, then ASSERT().
|
||||||
|
|
||||||
If Length is greater than (MAX_ADDRESS ?Buffer + 1), then ASSERT().
|
If Length is greater than (MAX_ADDRESS -Buffer + 1), then ASSERT().
|
||||||
|
|
||||||
@param Buffer Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.
|
@param Buffer Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.
|
||||||
@param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue.
|
@param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue.
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#ifndef __EDK_FVB_SERVICE_LIB_H__
|
#ifndef __FVB_SERVICE_LIB_H__
|
||||||
#define __EDK_FVB_SERVICE_LIB_H__
|
#define __FVB_SERVICE_LIB_H__
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Reads specified number of bytes into a buffer from the specified block.
|
Reads specified number of bytes into a buffer from the specified block.
|
||||||
|
@ -38,7 +38,7 @@ EfiFvbReadBlock (
|
||||||
IN EFI_LBA Lba,
|
IN EFI_LBA Lba,
|
||||||
IN UINTN Offset,
|
IN UINTN Offset,
|
||||||
IN OUT UINTN *NumBytes,
|
IN OUT UINTN *NumBytes,
|
||||||
IN UINT8 *Buffer
|
OUT UINT8 *Buffer
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -173,7 +173,6 @@ HiiLibSetString (
|
||||||
@retval EFI_NOT_FOUND The string specified by StringId is not available.
|
@retval EFI_NOT_FOUND The string specified by StringId is not available.
|
||||||
@retval EFI_BUFFER_TOO_SMALL The buffer specified by StringLength is too small
|
@retval EFI_BUFFER_TOO_SMALL The buffer specified by StringLength is too small
|
||||||
to hold the string.
|
to hold the string.
|
||||||
@retval EFI_INVALID_PARAMETER The String or StringSize was NULL.
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
|
|
@ -84,6 +84,7 @@ HiiLibGetNextLanguage (
|
||||||
CHAR8 *StringPtr;
|
CHAR8 *StringPtr;
|
||||||
|
|
||||||
ASSERT (LangCode != NULL);
|
ASSERT (LangCode != NULL);
|
||||||
|
ASSERT (*LangCode != NULL);
|
||||||
ASSERT (Lang != NULL);
|
ASSERT (Lang != NULL);
|
||||||
|
|
||||||
Index = 0;
|
Index = 0;
|
||||||
|
|
|
@ -230,7 +230,6 @@ Out:
|
||||||
@retval EFI_NOT_FOUND The string specified by StringId is not available.
|
@retval EFI_NOT_FOUND The string specified by StringId is not available.
|
||||||
@retval EFI_BUFFER_TOO_SMALL The buffer specified by StringLength is too small
|
@retval EFI_BUFFER_TOO_SMALL The buffer specified by StringLength is too small
|
||||||
to hold the string.
|
to hold the string.
|
||||||
@retval EFI_INVALID_PARAMETER The String or StringSize was NULL.
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
|
Loading…
Reference in New Issue