net: cosmetic: Clean up DNS variables and functions

Make a thorough pass through all variables and function names contained
within dns.c and remove CamelCase and improve naming.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Joe Hershberger
2015-04-08 01:41:15 -05:00
committed by Simon Glass
parent 6aede5b750
commit 786eac5f9d
5 changed files with 32 additions and 35 deletions

View File

@@ -31,6 +31,6 @@ struct header {
unsigned char data[1]; /* Data, variable length */
};
extern void DnsStart(void); /* Begin DNS */
void dns_start(void); /* Begin DNS */
#endif