diff options
author | Olivier Martin <olivier.martin@arm.com> | 2014-06-20 18:24:51 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-06-20 18:24:51 +0000 |
commit | b0fdce95f7c35f169d7aec8e95e96955c2194887 (patch) | |
tree | 07f077bd8cc4afd5dd328b321d67c3434612db4e /Omap35xxPkg/PciEmulation | |
parent | ec6b8eda8fcb2e53fb90ee8d38c58cbe6d602665 (diff) | |
download | edk2-b0fdce95f7c35f169d7aec8e95e96955c2194887.tar.gz edk2-b0fdce95f7c35f169d7aec8e95e96955c2194887.tar.bz2 edk2-b0fdce95f7c35f169d7aec8e95e96955c2194887.zip |
ARM Packages: Fixed missing braces (the warning was disabled by GCC)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15578 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Omap35xxPkg/PciEmulation')
-rw-r--r-- | Omap35xxPkg/PciEmulation/PciEmulation.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Omap35xxPkg/PciEmulation/PciEmulation.c b/Omap35xxPkg/PciEmulation/PciEmulation.c index 0cc0faa42c..afa64193a2 100644 --- a/Omap35xxPkg/PciEmulation/PciEmulation.c +++ b/Omap35xxPkg/PciEmulation/PciEmulation.c @@ -39,16 +39,16 @@ typedef struct { EFI_PCI_IO_DEVICE_PATH PciIoDevicePathTemplate =
{
{
- { ACPI_DEVICE_PATH, ACPI_DP, sizeof (ACPI_HID_DEVICE_PATH), 0},
+ { ACPI_DEVICE_PATH, ACPI_DP, { sizeof (ACPI_HID_DEVICE_PATH), 0 } },
EISA_PNP_ID(0x0A03), // HID
0 // UID
},
{
- { HARDWARE_DEVICE_PATH, HW_PCI_DP, sizeof (PCI_DEVICE_PATH), 0},
+ { HARDWARE_DEVICE_PATH, HW_PCI_DP, { sizeof (PCI_DEVICE_PATH), 0 } },
0,
0
},
- { END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, sizeof (EFI_DEVICE_PATH_PROTOCOL), 0}
+ { END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, { sizeof (EFI_DEVICE_PATH_PROTOCOL), 0} }
};
STATIC
@@ -422,12 +422,9 @@ EFI_PCI_IO_PROTOCOL PciIoTemplate = {
PciIoPollMem,
PciIoPollIo,
- PciIoMemRead,
- PciIoMemWrite,
- PciIoIoRead,
- PciIoIoWrite,
- PciIoPciRead,
- PciIoPciWrite,
+ { PciIoMemRead, PciIoMemWrite },
+ { PciIoIoRead, PciIoIoWrite },
+ { PciIoPciRead, PciIoPciWrite },
PciIoCopyMem,
PciIoMap,
PciIoUnmap,
|