summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Base.h
diff options
context:
space:
mode:
authorgikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-05 09:50:02 +0000
committergikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-05 09:50:02 +0000
commit62991af27f84e5f20e55dee6e1f90eb77ec5325e (patch)
treef483f7311c1742806a55c63c332b8f5e988413a7 /MdePkg/Include/Base.h
parent3c39934be2000b20326dd9297c88bc070bac419d (diff)
downloadedk2-platforms-62991af27f84e5f20e55dee6e1f90eb77ec5325e.tar.xz
Make comments match the Spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6876 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Base.h')
-rw-r--r--MdePkg/Include/Base.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Include/Base.h b/MdePkg/Include/Base.h
index 232521fd43..4613ea011d 100644
--- a/MdePkg/Include/Base.h
+++ b/MdePkg/Include/Base.h
@@ -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)