summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-31 07:58:50 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-31 07:58:50 +0000
commitc1b1d7a0229df31f888844d186f9589e48692d83 (patch)
treeee886ea2efa7a110a00ce7f2588a16bd23725d9a /MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
parent383ad6791f50c1b44192054ea2975e3dd32e3baa (diff)
downloadedk2-platforms-c1b1d7a0229df31f888844d186f9589e48692d83.tar.xz
Fix a prototype bug.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6353 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c')
-rw-r--r--MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c b/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
index 0ab4211808..3afe939765 100644
--- a/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
+++ b/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c
@@ -66,7 +66,7 @@ InternalGetMemoryMapAddress (
UINT8
EFIAPI
IoRead8 (
- IN UINT64 Port
+ IN UINTN Port
)
{
return MmioRead8 (InternalGetMemoryMapAddress (Port));
@@ -87,7 +87,7 @@ IoRead8 (
UINT16
EFIAPI
IoRead16 (
- IN UINT64 Port
+ IN UINTN Port
)
{
return MmioRead16 (InternalGetMemoryMapAddress (Port));
@@ -108,7 +108,7 @@ IoRead16 (
UINT32
EFIAPI
IoRead32 (
- IN UINT64 Port
+ IN UINTN Port
)
{
return MmioRead32 (InternalGetMemoryMapAddress (Port));
@@ -156,7 +156,7 @@ IoRead64 (
UINT8
EFIAPI
IoWrite8 (
- IN UINT64 Port,
+ IN UINTN Port,
IN UINT8 Data
)
{
@@ -181,7 +181,7 @@ IoWrite8 (
UINT16
EFIAPI
IoWrite16 (
- IN UINT64 Port,
+ IN UINTN Port,
IN UINT16 Data
)
{
@@ -206,7 +206,7 @@ IoWrite16 (
UINT32
EFIAPI
IoWrite32 (
- IN UINT64 Port,
+ IN UINTN Port,
IN UINT32 Data
)
{