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
This commit is contained in:
committed by
oliviermartin
parent
ec6b8eda8f
commit
b0fdce95f7
@@ -318,10 +318,10 @@ TcpFastbootTransportStart (
|
||||
255, // IPv4 Time to Live
|
||||
{ // AccessPoint:
|
||||
TRUE, // Use default address
|
||||
{0, 0, 0, 0}, // IP Address (ignored - use default)
|
||||
{0, 0, 0, 0}, // Subnet mask (ignored - use default)
|
||||
{ {0, 0, 0, 0} }, // IP Address (ignored - use default)
|
||||
{ {0, 0, 0, 0} }, // Subnet mask (ignored - use default)
|
||||
FixedPcdGet32 (PcdAndroidFastbootTcpPort), // Station port
|
||||
{0, 0, 0, 0}, // Remote address: accept any
|
||||
{ {0, 0, 0, 0} }, // Remote address: accept any
|
||||
0, // Remote Port: accept any
|
||||
FALSE // ActiveFlag: be a "server"
|
||||
},
|
||||
|
@@ -26,14 +26,13 @@ LAN9118_DEVICE_PATH Lan9118PathTemplate = {
|
||||
MESSAGING_DEVICE_PATH, MSG_MAC_ADDR_DP,
|
||||
{ (UINT8) (sizeof(MAC_ADDR_DEVICE_PATH)), (UINT8) ((sizeof(MAC_ADDR_DEVICE_PATH)) >> 8) }
|
||||
},
|
||||
{ 0 },
|
||||
{ { 0 } },
|
||||
0
|
||||
},
|
||||
{
|
||||
END_DEVICE_PATH_TYPE,
|
||||
END_ENTIRE_DEVICE_PATH_SUBTYPE,
|
||||
sizeof(EFI_DEVICE_PATH_PROTOCOL),
|
||||
0
|
||||
{ sizeof(EFI_DEVICE_PATH_PROTOCOL), 0 }
|
||||
}
|
||||
};
|
||||
|
||||
|
@@ -14,7 +14,7 @@
|
||||
|
||||
#include "Lan9118Dxe.h"
|
||||
|
||||
STATIC EFI_MAC_ADDRESS mZeroMac = { 0 };
|
||||
STATIC EFI_MAC_ADDRESS mZeroMac = { { 0 } };
|
||||
|
||||
/**
|
||||
This internal function reverses bits for 32bit data.
|
||||
|
Reference in New Issue
Block a user