mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 15:44:04 +02:00
Fix ICC build break.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11020 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6eea8eaeef
commit
f13f9683db
@ -451,7 +451,7 @@ PciIoMemRead (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -526,7 +526,7 @@ PciIoMemWrite (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -600,7 +600,7 @@ PciIoIoRead (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -674,7 +674,7 @@ PciIoIoWrite (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -739,7 +739,7 @@ PciIoConfigRead (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -804,7 +804,7 @@ PciIoConfigWrite (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((Offset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -899,7 +899,7 @@ PciIoCopyMem (
|
|||||||
//
|
//
|
||||||
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
if (FeaturePcdGet (PcdUnalignedPciIoEnable)) {
|
||||||
if ((SrcOffset & ((1 << (Width & 0x03)) - 1)) != 0 || (DestOffset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
if ((SrcOffset & ((1 << (Width & 0x03)) - 1)) != 0 || (DestOffset & ((1 << (Width & 0x03)) - 1)) != 0) {
|
||||||
Width &= (~0x03);
|
Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & (~0x03));
|
||||||
Count *= (UINTN)(1 << (Width & 0x03));
|
Count *= (UINTN)(1 << (Width & 0x03));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user