diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-04 08:04:10 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-04 08:04:10 +0000 |
commit | b30312ba2985176709dbcd0aaab9804668720eed (patch) | |
tree | e2e300e115599be87f99578432846f28e572ab2b /MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h | |
parent | 9359e53fcbdf72809f34d5141b642db91e6c9a18 (diff) | |
download | edk2-platforms-b30312ba2985176709dbcd0aaab9804668720eed.tar.xz |
Update the function headers to Doxygen format.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5410 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h')
-rw-r--r-- | MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h b/MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h index 8e18f5698d..f4d5f9cb12 100644 --- a/MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h +++ b/MdeModulePkg/Universal/BdsDxe/HwErrRecSupport.h @@ -18,27 +18,25 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "Bds.h"
-VOID
-InitializeHwErrRecSupport (
- IN UINT16 HwErrRecSupportLevel
- )
-/*++
+/**
+ Set the HwErrRecSupport variable contains a binary UINT16 that supplies the
+ level of support for Hardware Error Record Persistence that is implemented
+ by the platform.
- Routine Description:
- Set the HwErrRecSupport variable contains a binary UINT16 that supplies the
- level of support for Hardware Error Record Persistence that is implemented
- by the platform.
- Arguments:
- HwErrRecSupportLevel
- zero value - Indicates that the platform implements no support for
- Hardware Error Record Persistence.
- non-zero value - Indicates that the platform implements Hardware Error
- Record Persistence.
+ @param HwErrRecSupportLevel
+ zero value - Indicates that the platform implements no support for
+ Hardware Error Record Persistence.
+ non-zero value - Indicates that the platform implements Hardware Error
+ Record Persistence.
- Returns:
+ @return VOID
---*/
+**/
+VOID
+InitializeHwErrRecSupport (
+ IN UINT16 HwErrRecSupportLevel
+ )
;
#endif
|