mirror of https://github.com/acidanthera/audk.git
CorebootPayloadPkg: Use extra braces to prevent gcc compile fail
Use extra braces around initialization data to prevent gcc compile error: -Werror=missing-braces. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Scott Duplichan <scott@notabs.org> Reviewed-by: Maurice Ma <maurice.ma@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17147 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b6242db90a
commit
30a3e833ea
|
@ -37,18 +37,18 @@ typedef struct {
|
||||||
|
|
||||||
SIMPLE_TEXT_OUT_DEVICE_PATH mDevicePath = {
|
SIMPLE_TEXT_OUT_DEVICE_PATH mDevicePath = {
|
||||||
{
|
{
|
||||||
{ HARDWARE_DEVICE_PATH, HW_VENDOR_DP, sizeof (VENDOR_DEVICE_PATH), 0},
|
{ HARDWARE_DEVICE_PATH, HW_VENDOR_DP, { sizeof (VENDOR_DEVICE_PATH), 0} },
|
||||||
EFI_SERIAL_IO_PROTOCOL_GUID // Use the drivers GUID
|
EFI_SERIAL_IO_PROTOCOL_GUID // Use the drivers GUID
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
{ MESSAGING_DEVICE_PATH, MSG_UART_DP, sizeof (UART_DEVICE_PATH), 0},
|
{ MESSAGING_DEVICE_PATH, MSG_UART_DP, { sizeof (UART_DEVICE_PATH), 0} },
|
||||||
0, // Reserved
|
0, // Reserved
|
||||||
FixedPcdGet64 (PcdUartDefaultBaudRate), // BaudRate
|
FixedPcdGet64 (PcdUartDefaultBaudRate), // BaudRate
|
||||||
FixedPcdGet8 (PcdUartDefaultDataBits), // DataBits
|
FixedPcdGet8 (PcdUartDefaultDataBits), // DataBits
|
||||||
FixedPcdGet8 (PcdUartDefaultParity), // Parity (N)
|
FixedPcdGet8 (PcdUartDefaultParity), // Parity (N)
|
||||||
FixedPcdGet8 (PcdUartDefaultStopBits) // StopBits
|
FixedPcdGet8 (PcdUartDefaultStopBits) // StopBits
|
||||||
},
|
},
|
||||||
{ 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 } }
|
||||||
};
|
};
|
||||||
|
|
||||||
EFI_HANDLE gHandle = NULL;
|
EFI_HANDLE gHandle = NULL;
|
||||||
|
|
Loading…
Reference in New Issue