From: Laszlo Ersek Date: Thu, 14 Jul 2016 09:53:50 +0000 (+0200) Subject: MdeModulePkg/PciHostBridgeDxe: fix Ia32 GCC44 build error X-Git-Tag: edk2-stable201903~6262 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=5a0a803f01a991b9bd922ed974559b1d0e8d1067 MdeModulePkg/PciHostBridgeDxe: fix Ia32 GCC44 build error > cc1: warnings being treated as errors > MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridge.c: > In function 'GetProposedResources': > MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridge.c:1388: > error: integer constant is too large for 'long' type Append a ULL suffix to the replacement text of PCI_RESOURCE_LESS that is aligned with the style of the EFI_RESOURCE_SATISFIED and EFI_RESOURCE_NOT_SATISFIED macros. Cc: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Liming Gao --- diff --git a/MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostResource.h b/MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostResource.h index f35222b634..8612c0c325 100644 --- a/MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostResource.h +++ b/MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostResource.h @@ -17,7 +17,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include -#define PCI_RESOURCE_LESS 0xFFFFFFFFFFFFFFFE +#define PCI_RESOURCE_LESS 0xFFFFFFFFFFFFFFFEULL typedef enum { TypeIo = 0,