summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-31 07:59:47 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-31 07:59:47 +0000
commite4508cd8329d64d1fcc621940a44c50778f04a20 (patch)
tree0e783c54cec9bc5e85499c4e4e0196e33cf29f51 /MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
parentc1b1d7a0229df31f888844d186f9589e48692d83 (diff)
downloadedk2-platforms-e4508cd8329d64d1fcc621940a44c50778f04a20.tar.xz
Fix a prototype bug.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6354 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c')
-rw-r--r--MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c b/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
index 3afe939765..7a5a4464aa 100644
--- a/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
+++ b/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
@@ -256,7 +256,7 @@ IoWrite64 (
UINT8
EFIAPI
MmioRead8 (
- IN UINT64 Address
+ IN UINTN Address
)
{
UINT8 Data;
@@ -285,7 +285,7 @@ MmioRead8 (
UINT16
EFIAPI
MmioRead16 (
- IN UINT64 Address
+ IN UINTN Address
)
{
UINT16 Data;
@@ -319,7 +319,7 @@ MmioRead16 (
UINT32
EFIAPI
MmioRead32 (
- IN UINT64 Address
+ IN UINTN Address
)
{
UINT32 Data;
@@ -353,7 +353,7 @@ MmioRead32 (
UINT64
EFIAPI
MmioRead64 (
- IN UINT64 Address
+ IN UINTN Address
)
{
UINT64 Data;
@@ -391,7 +391,7 @@ MmioRead64 (
UINT8
EFIAPI
MmioWrite8 (
- IN UINT64 Address,
+ IN UINTN Address,
IN UINT8 Data
)
{
@@ -422,7 +422,7 @@ MmioWrite8 (
UINT16
EFIAPI
MmioWrite16 (
- IN UINT64 Address,
+ IN UINTN Address,
IN UINT16 Data
)
{
@@ -458,7 +458,7 @@ MmioWrite16 (
UINT32
EFIAPI
MmioWrite32 (
- IN UINT64 Address,
+ IN UINTN Address,
IN UINT32 Data
)
{
@@ -494,7 +494,7 @@ MmioWrite32 (
UINT64
EFIAPI
MmioWrite64 (
- IN UINT64 Address,
+ IN UINTN Address,
IN UINT64 Data
)
{