mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
net: cosmetic: Un-typedef VLAN_Ethernet_t
Eliminate the typedef and remove capital letters Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
cb487f5664
commit
c68cca35b3
2 changed files with 8 additions and 5 deletions
|
@ -909,7 +909,8 @@ NetReceive(uchar *inpkt, int len)
|
|||
len -= ETHER_HDR_SIZE;
|
||||
|
||||
} else { /* VLAN packet */
|
||||
VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
|
||||
struct vlan_ethernet_hdr *vet =
|
||||
(struct vlan_ethernet_hdr *)et;
|
||||
|
||||
debug("VLAN packet received\n");
|
||||
|
||||
|
@ -1232,7 +1233,8 @@ NetSetEther(uchar *xet, uchar * addr, uint prot)
|
|||
et->et_protlen = htons(prot);
|
||||
return ETHER_HDR_SIZE;
|
||||
} else {
|
||||
VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
|
||||
struct vlan_ethernet_hdr *vet =
|
||||
(struct vlan_ethernet_hdr *)xet;
|
||||
|
||||
vet->vet_vlan_type = htons(PROT_VLAN);
|
||||
vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue