diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:11 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:33 -0600 |
commit | 698d78e5457bc04f4ee3cd6985429c34615bcb59 (patch) | |
tree | eb9ac468cd99b901bafb1f74ae13274e058b7b48 /net/rarp.h | |
parent | 68c76a3a38a008e162581d0785618a898cc7944b (diff) | |
download | u-boot-698d78e5457bc04f4ee3cd6985429c34615bcb59.tar.gz u-boot-698d78e5457bc04f4ee3cd6985429c34615bcb59.tar.bz2 u-boot-698d78e5457bc04f4ee3cd6985429c34615bcb59.zip |
net: cosmetic: Clean up RARP variables and functions
Make a thorough pass through all variables and function names contained
within rarp.c 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/rarp.h')
-rw-r--r-- | net/rarp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/rarp.h b/net/rarp.h index 93e18899c3..1ca8833ce5 100644 --- a/net/rarp.h +++ b/net/rarp.h @@ -17,11 +17,11 @@ * Global functions and variables. */ -extern int RarpTry; +extern int rarp_try; /* Process the receipt of a RARP packet */ -extern void rarp_receive(struct ip_udp_hdr *ip, unsigned len); -extern void RarpRequest(void); /* Send a RARP request */ +void rarp_receive(struct ip_udp_hdr *ip, unsigned len); +void rarp_request(void); /* Send a RARP request */ /**********************************************************************/ |