From c1b1d7a0229df31f888844d186f9589e48692d83 Mon Sep 17 00:00:00 2001 From: qwang12 Date: Fri, 31 Oct 2008 07:58:50 +0000 Subject: Fix a prototype bug. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6353 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'MdePkg/Library/BaseIoLibIntrinsic') 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 ) { -- cgit v1.2.3