diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:08 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:33 -0600 |
commit | 85d25e0e7630a61bdbf2d4e8b1991e3cc6c96d65 (patch) | |
tree | d849a32ce0e623fed5e436f91b0e9bb6fc659573 /net/ping.c | |
parent | 8885c5fe90ef43d087c9b2cc3a0f907aff90bd76 (diff) |
net: cosmetic: Clean up ARP variables and functions
Make a thorough pass through all variables and function names contained
within arp and remove CamelCase and improve naming.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/ping.c')
-rw-r--r-- | net/ping.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ping.c b/net/ping.c index 7c6084c3e37..76e87494a02 100644 --- a/net/ping.c +++ b/net/ping.c @@ -56,12 +56,12 @@ static int ping_send(void) set_icmp_header(pkt, net_ping_ip); /* size of the waiting packet */ - NetArpWaitTxPacketSize = eth_hdr_size + IP_ICMP_HDR_SIZE; + arp_wait_tx_packet_size = eth_hdr_size + IP_ICMP_HDR_SIZE; /* and do the ARP request */ - NetArpWaitTry = 1; - NetArpWaitTimerStart = get_timer(0); - ArpRequest(); + arp_wait_try = 1; + arp_wait_timer_start = get_timer(0); + arp_request(); return 1; /* waiting */ } |