diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-08 13:29:42 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-08 13:29:42 +0000 |
commit | 5f597758e20f046a7a76e728370b99308cf2c8a0 (patch) | |
tree | 749e4d98131de9bc655860cf2a715d8b9cc75703 /MdeModulePkg/Include/Protocol/GenericMemoryTest.h | |
parent | 78c2ffb5a7172b9c5fbef15b5edc7aae3de5d4f2 (diff) | |
download | edk2-platforms-5f597758e20f046a7a76e728370b99308cf2c8a0.tar.xz |
Code scrube for MdeModule Definitions.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5428 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Include/Protocol/GenericMemoryTest.h')
-rw-r--r-- | MdeModulePkg/Include/Protocol/GenericMemoryTest.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/MdeModulePkg/Include/Protocol/GenericMemoryTest.h b/MdeModulePkg/Include/Protocol/GenericMemoryTest.h index 9fcdffac94..c5c4f24530 100644 --- a/MdeModulePkg/Include/Protocol/GenericMemoryTest.h +++ b/MdeModulePkg/Include/Protocol/GenericMemoryTest.h @@ -1,6 +1,5 @@ /** @file
- The EFI generic memory test protocol interface.
- For more information please look at EfiMemoryTest.doc
+ This protocol defines the EFI generic memory test interfaces in Dxe phase.
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
All rights reserved. This program and the accompanying materials
@@ -47,7 +46,7 @@ typedef enum { typedef
EFI_STATUS
(EFIAPI *EFI_MEMORY_TEST_INIT) (
- IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
+ IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
IN EXTENDMEM_COVERAGE_LEVEL Level,
OUT BOOLEAN *RequireSoftECCInit
)
@@ -71,6 +70,7 @@ EFI_STATUS internally.
@retval EFI_NOT_FOUND Indicate all the non-tested memory blocks have
already go through.
+ @retval EFI_DEVICE_ERROR Mis-compare error, and no agent can handle it
**/
typedef
@@ -110,15 +110,14 @@ EFI_STATUS @param StartAddress The start address of the memory range.
@param Length The memory range's length.
- @retval EFI_SUCCESS The compatible memory range pass the memory test.
- @retval EFI_DEVICE_ERROR The compatible memory range test find memory error
- and also return return the error address.
+ @retval EFI_SUCCESS The compatible memory range pass the memory test.
+ @retval EFI_INVALID_PARAMETER The compatible memory range must be below 16M.
**/
typedef
EFI_STATUS
(EFIAPI *EFI_MEMORY_TEST_COMPATIBLE_RANGE) (
- IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
+ IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
IN EFI_PHYSICAL_ADDRESS StartAddress,
IN UINT64 Length
)
|