From 698d78e5457bc04f4ee3cd6985429c34615bcb59 Mon Sep 17 00:00:00 2001 From: Joe Hershberger Date: Wed, 8 Apr 2015 01:41:11 -0500 Subject: 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 Acked-by: Simon Glass --- net/rarp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'net/rarp.h') 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 */ /**********************************************************************/ -- cgit v1.2.3