mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
Remove the tailing ',' to ensure the code pass EBC's -Za option (Enforces strict conformance to the ANSI standard for C).
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5324 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d389c6f3fc
commit
552b252326
@ -45,7 +45,7 @@ enum {
|
|||||||
IP4_ADDR_CLASSD,
|
IP4_ADDR_CLASSD,
|
||||||
IP4_ADDR_CLASSE,
|
IP4_ADDR_CLASSE,
|
||||||
|
|
||||||
IP4_MASK_NUM = 33,
|
IP4_MASK_NUM = 33
|
||||||
};
|
};
|
||||||
|
|
||||||
#pragma pack(1)
|
#pragma pack(1)
|
||||||
@ -765,7 +765,7 @@ enum {
|
|||||||
NET_PROTO_DATA = 64, // Opaque buffer for protocols
|
NET_PROTO_DATA = 64, // Opaque buffer for protocols
|
||||||
NET_BUF_HEAD = 1, // Trim or allocate space from head
|
NET_BUF_HEAD = 1, // Trim or allocate space from head
|
||||||
NET_BUF_TAIL = 0, // Trim or allocate space from tail
|
NET_BUF_TAIL = 0, // Trim or allocate space from tail
|
||||||
NET_VECTOR_OWN_FIRST = 0x01, // We allocated the 1st block in the vector
|
NET_VECTOR_OWN_FIRST = 0x01 // We allocated the 1st block in the vector
|
||||||
};
|
};
|
||||||
|
|
||||||
#define NET_CHECK_SIGNATURE(PData, SIGNATURE) \
|
#define NET_CHECK_SIGNATURE(PData, SIGNATURE) \
|
||||||
|
@ -28,7 +28,7 @@ typedef struct _UDP_IO_PORT UDP_IO_PORT;
|
|||||||
enum {
|
enum {
|
||||||
UDP_IO_RX_SIGNATURE = EFI_SIGNATURE_32 ('U', 'D', 'P', 'R'),
|
UDP_IO_RX_SIGNATURE = EFI_SIGNATURE_32 ('U', 'D', 'P', 'R'),
|
||||||
UDP_IO_TX_SIGNATURE = EFI_SIGNATURE_32 ('U', 'D', 'P', 'T'),
|
UDP_IO_TX_SIGNATURE = EFI_SIGNATURE_32 ('U', 'D', 'P', 'T'),
|
||||||
UDP_IO_SIGNATURE = EFI_SIGNATURE_32 ('U', 'D', 'P', 'I'),
|
UDP_IO_SIGNATURE = EFI_SIGNATURE_32 ('U', 'D', 'P', 'I')
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -47,7 +47,7 @@ enum {
|
|||||||
IP4_CONFIG_SOURCE_MAX,
|
IP4_CONFIG_SOURCE_MAX,
|
||||||
|
|
||||||
IP4_NIC_NAME_LENGTH = 64,
|
IP4_NIC_NAME_LENGTH = 64,
|
||||||
MAX_IP4_CONFIG_IN_VARIABLE = 16,
|
MAX_IP4_CONFIG_IN_VARIABLE = 16
|
||||||
};
|
};
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user