diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-03 07:54:27 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-03 07:54:27 +0000 |
commit | afa223265a8c8c8e7e57654b22927778d1fb599a (patch) | |
tree | 31ac16ecaddd11b09f9c0bc8f7c75067ad8876ac /MdePkg/Library/BasePostCodeLibDebug | |
parent | bb347ec2750f416da929f9995b1eb6b3fbe77cf7 (diff) | |
download | edk2-afa223265a8c8c8e7e57654b22927778d1fb599a.tar.gz edk2-afa223265a8c8c8e7e57654b22927778d1fb599a.tar.bz2 edk2-afa223265a8c8c8e7e57654b22927778d1fb599a.zip |
clean the codes according to review comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5789 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePostCodeLibDebug')
-rw-r--r-- | MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf | 3 | ||||
-rw-r--r-- | MdePkg/Library/BasePostCodeLibDebug/PostCode.c | 9 |
2 files changed, 5 insertions, 7 deletions
diff --git a/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf b/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf index d915130c65..64553ec54b 100644 --- a/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf +++ b/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf @@ -1,6 +1,7 @@ #/** @file
+# Component description file Post Code Library.
#
-# Post Code Library that layers on top of a Debug Library instance.
+# The instance of Post Code Library that layers on top of a Debug Library instance.
# Copyright (c) 2007 - 2008, Intel Corporation.
#
# All rights reserved. This program and the accompanying materials
diff --git a/MdePkg/Library/BasePostCodeLibDebug/PostCode.c b/MdePkg/Library/BasePostCodeLibDebug/PostCode.c index 4335acb1ae..974adceca7 100644 --- a/MdePkg/Library/BasePostCodeLibDebug/PostCode.c +++ b/MdePkg/Library/BasePostCodeLibDebug/PostCode.c @@ -1,5 +1,5 @@ /** @file
- Base Post Code Library instance based on Debug Library.
+ The instance of Post Code Library that layers on top of a Debug Library instance.
Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
@@ -12,11 +12,8 @@ **/
-
-
#include <Base.h>
-
#include <Library/PostCodeLib.h>
#include <Library/DebugLib.h>
#include <Library/PcdLib.h>
@@ -36,7 +33,7 @@ @param Value The 32-bit value to write to the POST card.
- @return Value The 32-bit value to write to the POST card.
+ @return The 32-bit value to write to the POST card.
**/
UINT32
@@ -71,7 +68,7 @@ PostCode ( POST code value. This is an optional parameter that may
be NULL.
- @return Value The 32-bit value to write to the POST card.
+ @return The 32-bit value to write to the POST card.
**/
UINT32
|