summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Universal/FaultTolerantWriteDxe
diff options
context:
space:
mode:
authorgdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524>2011-01-16 05:05:45 +0000
committergdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524>2011-01-16 05:05:45 +0000
commita02ab69ad1b6b2a7dcf53e39d85a6fabf03c8baf (patch)
treefcff6648c01b5cfd02f272e9cbd06787b1dc9615 /MdeModulePkg/Universal/FaultTolerantWriteDxe
parente313026824819e31cfea7bc09f91abe2abc1e7db (diff)
downloadedk2-a02ab69ad1b6b2a7dcf53e39d85a6fabf03c8baf.tar.gz
edk2-a02ab69ad1b6b2a7dcf53e39d85a6fabf03c8baf.tar.bz2
edk2-a02ab69ad1b6b2a7dcf53e39d85a6fabf03c8baf.zip
Fixed 3 ECC errors.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11253 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/FaultTolerantWriteDxe')
-rw-r--r--MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmmDxe.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmmDxe.c b/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmmDxe.c
index 89c7d337bf..24b157df08 100644
--- a/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmmDxe.c
+++ b/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmmDxe.c
@@ -74,13 +74,13 @@ InitCommunicateBuffer (
/**
Send the data in communicate buffer to SMI handler and get response.
- @param[out] SmmCommunicateHeader The communicate buffer.
+ @param[in, out] SmmCommunicateHeader The communicate buffer.
@param[in] DataSize The payload size.
**/
EFI_STATUS
SendCommunicateBuffer (
- IN EFI_SMM_COMMUNICATE_HEADER *SmmCommunicateHeader,
+ IN OUT EFI_SMM_COMMUNICATE_HEADER *SmmCommunicateHeader,
IN UINTN DataSize
)
{
@@ -100,9 +100,9 @@ SendCommunicateBuffer (
/**
Get the FvbBaseAddress and FvbAttributes from the FVB handle FvbHandle.
- @param[in] FvBlockHandle The handle of FVB protocol that provides services.
- @param[in] FvbBaseAddress The base address of the FVB attached with FvBlockHandle.
- @param[out] FvbAttributes The attributes of the FVB attached with FvBlockHandle.
+ @param[in] FvbHandle The handle of FVB protocol that provides services.
+ @param[out] FvbBaseAddress The base address of the FVB attached with FvbHandle.
+ @param[out] FvbAttributes The attributes of the FVB attached with FvbHandle.
@retval EFI_SUCCESS The function completed successfully.
@retval Others The function could not complete successfully.