From 6bfc419e7070acf51caf37c2d8264b04afd5949b Mon Sep 17 00:00:00 2001 From: xli24 Date: Thu, 5 Mar 2009 07:22:26 +0000 Subject: [PATCH] Fix incorrect function headers of I/O Lib. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7806 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Library/DxeIoLibCpuIo/IoLibMmioBuffer.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c index d59e49cc41..d359be7ea8 100644 --- a/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c +++ b/IntelFrameworkPkg/Library/DxeIoLibCpuIo/IoLibMmioBuffer.c @@ -228,7 +228,7 @@ MmioReadBuffer64 ( @param Length Size in bytes of the copy. @param Buffer Pointer to a system memory buffer containing the data to write. - @return Size in bytes of the copy. + @return Buffer **/ UINT8 * @@ -259,7 +259,7 @@ MmioWriteBuffer8 ( Copy data from system memory specified by Buffer to MMIO region specified by starting address StartAddress by using 16-bit access. The total number - of byte to be copied is specified by Length. Length is returned. + of byte to be copied is specified by Length. Buffer is returned. If StartAddress is not aligned on a 16-bit boundary, then ASSERT(). @@ -274,7 +274,7 @@ MmioWriteBuffer8 ( @param Length Size in bytes of the copy. @param Buffer Pointer to a system memory buffer containing the data to write. - @return Size in bytes of the copy. + @return Buffer **/ UINT16 * @@ -313,7 +313,7 @@ MmioWriteBuffer16 ( Copy data from system memory specified by Buffer to MMIO region specified by starting address StartAddress by using 32-bit access. The total number - of byte to be copied is specified by Length. Length is returned. + of byte to be copied is specified by Length. Buffer is returned. If StartAddress is not aligned on a 32-bit boundary, then ASSERT(). @@ -328,7 +328,7 @@ MmioWriteBuffer16 ( @param Length Size in bytes of the copy. @param Buffer Pointer to a system memory buffer containing the data to write. - @return Size in bytes of the copy. + @return Buffer **/ UINT32 * @@ -366,7 +366,7 @@ MmioWriteBuffer32 ( Copy data from system memory specified by Buffer to MMIO region specified by starting address StartAddress by using 64-bit access. The total number - of byte to be copied is specified by Length. Length is returned. + of byte to be copied is specified by Length. Buffer is returned. If StartAddress is not aligned on a 64-bit boundary, then ASSERT(). @@ -381,7 +381,7 @@ MmioWriteBuffer32 ( @param Length Size in bytes of the copy. @param Buffer Pointer to a system memory buffer containing the data to write. - @return Size in bytes of the copy. + @return Buffer **/ UINT64 * -- 2.39.2