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