summaryrefslogtreecommitdiffstats
path: root/include/net.h
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2012-05-23 07:58:07 +0000
committerJoe Hershberger <joe.hershberger@ni.com>2012-05-23 17:46:14 -0500
commitc68cca35b33c3a7c9fbcfc08de7e91dbdc8cf51f (patch)
tree3fb8a20f452b270c121e198dec18293bad69cd5c /include/net.h
parentcb487f5664b1bf7d907f5d23fe10cc14dc1bd45a (diff)
downloadblackbird-obmc-uboot-c68cca35b33c3a7c9fbcfc08de7e91dbdc8cf51f.tar.gz
blackbird-obmc-uboot-c68cca35b33c3a7c9fbcfc08de7e91dbdc8cf51f.zip
net: cosmetic: Un-typedef VLAN_Ethernet_t
Eliminate the typedef and remove capital letters Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/net.h')
-rw-r--r--include/net.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/net.h b/include/net.h
index 2551516032..69dceb19f0 100644
--- a/include/net.h
+++ b/include/net.h
@@ -185,15 +185,16 @@ struct e802_hdr {
/*
* Ethernet header
*/
-typedef struct {
+struct vlan_ethernet_hdr {
uchar vet_dest[6]; /* Destination node */
uchar vet_src[6]; /* Source node */
ushort vet_vlan_type; /* PROT_VLAN */
ushort vet_tag; /* TAG of VLAN */
ushort vet_type; /* protocol type */
-} VLAN_Ethernet_t;
+};
-#define VLAN_ETHER_HDR_SIZE 18 /* VLAN Ethernet header size */
+/* VLAN Ethernet header size */
+#define VLAN_ETHER_HDR_SIZE (sizeof(struct vlan_ethernet_hdr))
#define PROT_IP 0x0800 /* IP protocol */
#define PROT_ARP 0x0806 /* IP ARP protocol */
OpenPOWER on IntegriCloud