mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/PciHostBridgeDxe: Make bitwise operands of the same size
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
4275f38507
commit
8df95dd04f
|
@ -1349,7 +1349,7 @@ RootBridgeIoAllocateBuffer (
|
|||
//
|
||||
// Clear DUAL_ADDRESS_CYCLE
|
||||
//
|
||||
Attributes &= ~EFI_PCI_ATTRIBUTE_DUAL_ADDRESS_CYCLE;
|
||||
Attributes &= ~((UINT64) EFI_PCI_ATTRIBUTE_DUAL_ADDRESS_CYCLE);
|
||||
}
|
||||
Status = mIoMmuProtocol->AllocateBuffer (
|
||||
mIoMmuProtocol,
|
||||
|
|
Loading…
Reference in New Issue