mirror of https://github.com/acidanthera/audk.git
fix 32bit build warning
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10935 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
75f18f3435
commit
5dec0c688e
|
@ -425,7 +425,7 @@ AhciBuildCommand (
|
||||||
AhciAndReg (PciIo, Offset, (UINT32)~(EFI_AHCI_PORT_CMD_DLAE | EFI_AHCI_PORT_CMD_ATAPI));
|
AhciAndReg (PciIo, Offset, (UINT32)~(EFI_AHCI_PORT_CMD_DLAE | EFI_AHCI_PORT_CMD_ATAPI));
|
||||||
}
|
}
|
||||||
|
|
||||||
RemainedData = DataLength;
|
RemainedData = (UINTN) DataLength;
|
||||||
MemAddr = (UINTN) DataPhysicalAddr;
|
MemAddr = (UINTN) DataPhysicalAddr;
|
||||||
CommandList->AhciCmdPrdtl = (UINT32)PrdtNumber;
|
CommandList->AhciCmdPrdtl = (UINT32)PrdtNumber;
|
||||||
|
|
||||||
|
@ -1569,7 +1569,7 @@ AhciCreateTransferDescriptor (
|
||||||
PciIo,
|
PciIo,
|
||||||
AllocateAnyPages,
|
AllocateAnyPages,
|
||||||
EfiBootServicesData,
|
EfiBootServicesData,
|
||||||
EFI_SIZE_TO_PAGES (MaxReceiveFisSize),
|
(UINTN)EFI_SIZE_TO_PAGES (MaxReceiveFisSize),
|
||||||
&Buffer,
|
&Buffer,
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
@ -1578,11 +1578,11 @@ AhciCreateTransferDescriptor (
|
||||||
return EFI_OUT_OF_RESOURCES;
|
return EFI_OUT_OF_RESOURCES;
|
||||||
}
|
}
|
||||||
|
|
||||||
ZeroMem (Buffer, MaxReceiveFisSize);
|
ZeroMem (Buffer, (UINTN)MaxReceiveFisSize);
|
||||||
|
|
||||||
AhciRegisters->AhciRFis = Buffer;
|
AhciRegisters->AhciRFis = Buffer;
|
||||||
AhciRegisters->MaxReceiveFisSize = MaxReceiveFisSize;
|
AhciRegisters->MaxReceiveFisSize = MaxReceiveFisSize;
|
||||||
Bytes = MaxReceiveFisSize;
|
Bytes = (UINTN)MaxReceiveFisSize;
|
||||||
|
|
||||||
Status = PciIo->Map (
|
Status = PciIo->Map (
|
||||||
PciIo,
|
PciIo,
|
||||||
|
@ -1619,7 +1619,7 @@ AhciCreateTransferDescriptor (
|
||||||
PciIo,
|
PciIo,
|
||||||
AllocateAnyPages,
|
AllocateAnyPages,
|
||||||
EfiBootServicesData,
|
EfiBootServicesData,
|
||||||
EFI_SIZE_TO_PAGES (MaxCommandListSize),
|
(UINTN)EFI_SIZE_TO_PAGES (MaxCommandListSize),
|
||||||
&Buffer,
|
&Buffer,
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
@ -1632,11 +1632,11 @@ AhciCreateTransferDescriptor (
|
||||||
goto Error5;
|
goto Error5;
|
||||||
}
|
}
|
||||||
|
|
||||||
ZeroMem (Buffer, MaxCommandListSize);
|
ZeroMem (Buffer, (UINTN)MaxCommandListSize);
|
||||||
|
|
||||||
AhciRegisters->AhciCmdList = Buffer;
|
AhciRegisters->AhciCmdList = Buffer;
|
||||||
AhciRegisters->MaxCommandListSize = MaxCommandListSize;
|
AhciRegisters->MaxCommandListSize = MaxCommandListSize;
|
||||||
Bytes = MaxCommandListSize;
|
Bytes = (UINTN)MaxCommandListSize;
|
||||||
|
|
||||||
Status = PciIo->Map (
|
Status = PciIo->Map (
|
||||||
PciIo,
|
PciIo,
|
||||||
|
@ -1674,7 +1674,7 @@ AhciCreateTransferDescriptor (
|
||||||
PciIo,
|
PciIo,
|
||||||
AllocateAnyPages,
|
AllocateAnyPages,
|
||||||
EfiBootServicesData,
|
EfiBootServicesData,
|
||||||
EFI_SIZE_TO_PAGES (MaxCommandTableSize),
|
(UINTN)EFI_SIZE_TO_PAGES (MaxCommandTableSize),
|
||||||
&Buffer,
|
&Buffer,
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
@ -1687,11 +1687,11 @@ AhciCreateTransferDescriptor (
|
||||||
goto Error3;
|
goto Error3;
|
||||||
}
|
}
|
||||||
|
|
||||||
ZeroMem (Buffer, MaxCommandTableSize);
|
ZeroMem (Buffer, (UINTN)MaxCommandTableSize);
|
||||||
|
|
||||||
AhciRegisters->AhciCommandTable = Buffer;
|
AhciRegisters->AhciCommandTable = Buffer;
|
||||||
AhciRegisters->MaxCommandTableSize = MaxCommandTableSize;
|
AhciRegisters->MaxCommandTableSize = MaxCommandTableSize;
|
||||||
Bytes = MaxCommandTableSize;
|
Bytes = (UINTN)MaxCommandTableSize;
|
||||||
|
|
||||||
Status = PciIo->Map (
|
Status = PciIo->Map (
|
||||||
PciIo,
|
PciIo,
|
||||||
|
@ -1730,7 +1730,7 @@ Error1:
|
||||||
Error2:
|
Error2:
|
||||||
PciIo->FreeBuffer (
|
PciIo->FreeBuffer (
|
||||||
PciIo,
|
PciIo,
|
||||||
EFI_SIZE_TO_PAGES (MaxCommandTableSize),
|
(UINTN)EFI_SIZE_TO_PAGES (MaxCommandTableSize),
|
||||||
AhciRegisters->AhciCommandTable
|
AhciRegisters->AhciCommandTable
|
||||||
);
|
);
|
||||||
Error3:
|
Error3:
|
||||||
|
@ -1741,7 +1741,7 @@ Error3:
|
||||||
Error4:
|
Error4:
|
||||||
PciIo->FreeBuffer (
|
PciIo->FreeBuffer (
|
||||||
PciIo,
|
PciIo,
|
||||||
EFI_SIZE_TO_PAGES (MaxCommandListSize),
|
(UINTN)EFI_SIZE_TO_PAGES (MaxCommandListSize),
|
||||||
AhciRegisters->AhciCmdList
|
AhciRegisters->AhciCmdList
|
||||||
);
|
);
|
||||||
Error5:
|
Error5:
|
||||||
|
@ -1752,7 +1752,7 @@ Error5:
|
||||||
Error6:
|
Error6:
|
||||||
PciIo->FreeBuffer (
|
PciIo->FreeBuffer (
|
||||||
PciIo,
|
PciIo,
|
||||||
EFI_SIZE_TO_PAGES (MaxReceiveFisSize),
|
(UINTN)EFI_SIZE_TO_PAGES (MaxReceiveFisSize),
|
||||||
AhciRegisters->AhciRFis
|
AhciRegisters->AhciRFis
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -1448,7 +1448,7 @@ AtaUdmaInOut (
|
||||||
PciIoOperation = EfiPciIoOperationBusMasterRead;
|
PciIoOperation = EfiPciIoOperationBusMasterRead;
|
||||||
}
|
}
|
||||||
|
|
||||||
ByteCount = DataLength;
|
ByteCount = (UINTN)DataLength;
|
||||||
Status = PciIo->Map (
|
Status = PciIo->Map (
|
||||||
PciIo,
|
PciIo,
|
||||||
PciIoOperation,
|
PciIoOperation,
|
||||||
|
|
Loading…
Reference in New Issue