diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:59:13 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:46:20 -0500 | 
| commit | adf5d93e441eb3eacd8c0430d6064b35d47ad2a5 (patch) | |
| tree | d8e088ac9d135ab710a276b405c3ed3e5f19b872 /net/arp.c | |
| parent | 61da3c2af8ba7a06cb1f7e9e0db54b9ddea532ce (diff) | |
| download | olio-uboot-2014.01-adf5d93e441eb3eacd8c0430d6064b35d47ad2a5.tar.xz olio-uboot-2014.01-adf5d93e441eb3eacd8c0430d6064b35d47ad2a5.zip | |
net: Refactor to use NetSendPacket instead of eth_send directly
Use this entry-point consistently across the net/ code
Use a static inline function to preserve code size
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/arp.c')
| -rw-r--r-- | net/arp.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -88,7 +88,7 @@ void ArpRequest(void)  	}  	NetWriteIP(&arp->ar_tpa, NetArpWaitReplyIP); -	(void) eth_send(NetTxPacket, eth_hdr_size + ARP_HDR_SIZE); +	NetSendPacket(NetTxPacket, eth_hdr_size + ARP_HDR_SIZE);  }  void ArpTimeoutCheck(void) @@ -165,7 +165,7 @@ void ArpReceive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)  		NetCopyIP(&arp->ar_tpa, &arp->ar_spa);  		memcpy(&arp->ar_sha, NetOurEther, ARP_HLEN);  		NetCopyIP(&arp->ar_spa, &NetOurIP); -		(void) eth_send((uchar *)et, eth_hdr_size + ARP_HDR_SIZE); +		NetSendPacket((uchar *)et, eth_hdr_size + ARP_HDR_SIZE);  		return;  	case ARPOP_REPLY:		/* arp reply */ @@ -198,7 +198,7 @@ void ArpReceive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)  			/* modify header, and transmit it */  			memcpy(((struct ethernet_hdr *)NetArpWaitTxPacket)->  				et_dest, NetArpWaitPacketMAC, ARP_HLEN); -			(void) eth_send(NetArpWaitTxPacket, +			NetSendPacket(NetArpWaitTxPacket,  					NetArpWaitTxPacketSize);  			/* no arp request pending now */ |