mirror of https://github.com/acidanthera/audk.git
Fix a prototype bug.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6353 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
383ad6791f
commit
c1b1d7a022
|
@ -66,7 +66,7 @@ InternalGetMemoryMapAddress (
|
||||||
UINT8
|
UINT8
|
||||||
EFIAPI
|
EFIAPI
|
||||||
IoRead8 (
|
IoRead8 (
|
||||||
IN UINT64 Port
|
IN UINTN Port
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return MmioRead8 (InternalGetMemoryMapAddress (Port));
|
return MmioRead8 (InternalGetMemoryMapAddress (Port));
|
||||||
|
@ -87,7 +87,7 @@ IoRead8 (
|
||||||
UINT16
|
UINT16
|
||||||
EFIAPI
|
EFIAPI
|
||||||
IoRead16 (
|
IoRead16 (
|
||||||
IN UINT64 Port
|
IN UINTN Port
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return MmioRead16 (InternalGetMemoryMapAddress (Port));
|
return MmioRead16 (InternalGetMemoryMapAddress (Port));
|
||||||
|
@ -108,7 +108,7 @@ IoRead16 (
|
||||||
UINT32
|
UINT32
|
||||||
EFIAPI
|
EFIAPI
|
||||||
IoRead32 (
|
IoRead32 (
|
||||||
IN UINT64 Port
|
IN UINTN Port
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return MmioRead32 (InternalGetMemoryMapAddress (Port));
|
return MmioRead32 (InternalGetMemoryMapAddress (Port));
|
||||||
|
@ -156,7 +156,7 @@ IoRead64 (
|
||||||
UINT8
|
UINT8
|
||||||
EFIAPI
|
EFIAPI
|
||||||
IoWrite8 (
|
IoWrite8 (
|
||||||
IN UINT64 Port,
|
IN UINTN Port,
|
||||||
IN UINT8 Data
|
IN UINT8 Data
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -181,7 +181,7 @@ IoWrite8 (
|
||||||
UINT16
|
UINT16
|
||||||
EFIAPI
|
EFIAPI
|
||||||
IoWrite16 (
|
IoWrite16 (
|
||||||
IN UINT64 Port,
|
IN UINTN Port,
|
||||||
IN UINT16 Data
|
IN UINT16 Data
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -206,7 +206,7 @@ IoWrite16 (
|
||||||
UINT32
|
UINT32
|
||||||
EFIAPI
|
EFIAPI
|
||||||
IoWrite32 (
|
IoWrite32 (
|
||||||
IN UINT64 Port,
|
IN UINTN Port,
|
||||||
IN UINT32 Data
|
IN UINT32 Data
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue