Synchronize function comments from library class to library instance.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6938 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2
2008-12-10 01:39:34 +00:00
parent 27a57d4735
commit 80f0c0c44f
5 changed files with 97 additions and 47 deletions

View File

@@ -33,10 +33,10 @@
@param StartAddress Starting address for the MMIO region to be copied from.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer receiving the data read.
@return Pointer to a system memory buffer receiving the data read.
@return Buffer
**/
UINT8 *
@@ -77,10 +77,10 @@ MmioReadBuffer8 (
If Buffer is not aligned on a 16-bit boundary, then ASSERT().
@param StartAddress Starting address for the MMIO region to be copied from.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer receiving the data read.
@return Pointer to a system memory buffer receiving the data read.
@return Buffer
**/
UINT16 *
@@ -128,10 +128,10 @@ MmioReadBuffer16 (
If Buffer is not aligned on a 32-bit boundary, then ASSERT().
@param StartAddress Starting address for the MMIO region to be copied from.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer receiving the data read.
@return Pointer to a system memory buffer receiving the data read.
@return Buffer
**/
UINT32 *
@@ -179,10 +179,10 @@ MmioReadBuffer32 (
If Buffer is not aligned on a 64-bit boundary, then ASSERT().
@param StartAddress Starting address for the MMIO region to be copied from.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer receiving the data read.
@return Pointer to a system memory buffer receiving the data read.
@return Buffer
**/
UINT64 *
@@ -227,10 +227,10 @@ MmioReadBuffer64 (
@param StartAddress Starting address for the MMIO region to be copied to.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer containing the data to write.
@return Pointer to a system memory buffer containing the data to write.
@return Size in bytes of the copy.
**/
UINT8 *
@@ -273,10 +273,10 @@ MmioWriteBuffer8 (
If Buffer is not aligned on a 16-bit boundary, then ASSERT().
@param StartAddress Starting address for the MMIO region to be copied to.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer containing the data to write.
@return Pointer to a system memory buffer containing the data to write.
@return Size in bytes of the copy.
**/
UINT16 *
@@ -327,10 +327,10 @@ MmioWriteBuffer16 (
If Buffer is not aligned on a 32-bit boundary, then ASSERT().
@param StartAddress Starting address for the MMIO region to be copied to.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer containing the data to write.
@return Pointer to a system memory buffer containing the data to write.
@return Size in bytes of the copy.
**/
UINT32 *
@@ -380,10 +380,10 @@ MmioWriteBuffer32 (
If Buffer is not aligned on a 64-bit boundary, then ASSERT().
@param StartAddress Starting address for the MMIO region to be copied to.
@param Length Size in bytes of the copy.
@param Length The size, in bytes, of Buffer.
@param Buffer Pointer to a system memory buffer containing the data to write.
@return Pointer to a system memory buffer containing the data to write.
@return Size in bytes of the copy.
**/
UINT64 *