Synchronize the h files with c files.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6967 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
gikidy
2008-12-10 06:13:43 +00:00
parent 4c395b6d95
commit 2281e7a9c3
12 changed files with 349 additions and 195 deletions

View File

@@ -26,10 +26,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 Buffer contains the data read from Mmio.
@return Buffer
**/
UINT8 *
@@ -70,10 +70,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 Buffer contains the data read from Mmio.
@return Buffer
**/
UINT16 *
@@ -121,10 +121,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 Buffer contains the data read from Mmio.
@return Buffer
**/
UINT32 *
@@ -172,10 +172,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 Buffer contains the data read from Mmio.
@return Buffer
**/
UINT64 *
@@ -220,7 +220,7 @@ 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 Size in bytes of the copy.
@@ -266,7 +266,7 @@ 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 Size in bytes of the copy.
@@ -320,7 +320,7 @@ 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 Size in bytes of the copy.
@@ -373,7 +373,7 @@ 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 Size in bytes of the copy.