Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69802 )
Change subject: src/include: Remove unnecessary space after casts ......................................................................
src/include: Remove unnecessary space after casts
Change-Id: Ie6def0dab9ac37c0938b73d27148a49531c6b17f Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/include/device/pci_rom.h 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/02/69802/1
diff --git a/src/include/device/pci_rom.h b/src/include/device/pci_rom.h index efda282..83015a1 100644 --- a/src/include/device/pci_rom.h +++ b/src/include/device/pci_rom.h @@ -8,7 +8,7 @@ #include <stdint.h>
#define PCI_ROM_HDR 0xAA55 -#define PCI_DATA_HDR ((uint32_t) (('R' << 24) | ('I' << 16) | ('C' << 8) | 'P')) +#define PCI_DATA_HDR ((uint32_t)(('R' << 24) | ('I' << 16) | ('C' << 8) | 'P'))
#define PCI_RAM_IMAGE_START 0xD0000 #define PCI_VGA_RAM_IMAGE_START 0xC0000