Make comments match the Spec.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6876 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
gikidy
2008-12-05 09:50:02 +00:00
parent 3c39934be2
commit 62991af27f
20 changed files with 541 additions and 548 deletions

View File

@@ -43,9 +43,9 @@ typedef struct {
//
typedef UINT64 PHYSICAL_ADDRESS;
//
// LIST_ENTRY definition.
//
///
/// LIST_ENTRY definition.
///
typedef struct _LIST_ENTRY LIST_ENTRY;
struct _LIST_ENTRY {
@@ -360,9 +360,9 @@ typedef CHAR8 *VA_LIST;
typedef INTN RETURN_STATUS;
//
// Set the upper bit to indicate EFI Error.
//
///
/// Set the upper bit to indicate EFI Error.
///
#define ENCODE_ERROR(a) (MAX_BIT | (a))
#define ENCODE_WARNING(a) (a)