diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:15 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:34 -0600 |
commit | 786eac5f9d0a9c30c2aceaededc9170a9dfb0197 (patch) | |
tree | 9822bd9438bcdc905df90525d999b6055e07a0e2 /include/net.h | |
parent | 6aede5b750e342c3293ec1d87c4dbb9376280bbe (diff) | |
download | u-boot-786eac5f9d0a9c30c2aceaededc9170a9dfb0197.tar.gz |
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>
Diffstat (limited to 'include/net.h')
-rw-r--r-- | include/net.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net.h b/include/net.h index eb71113259..7fe60e5899 100644 --- a/include/net.h +++ b/include/net.h @@ -508,8 +508,8 @@ extern u32 net_boot_file_size; extern u32 net_boot_file_expected_size_in_blocks; #if defined(CONFIG_CMD_DNS) -extern char *NetDNSResolve; /* The host to resolve */ -extern char *NetDNSenvvar; /* the env var to put the ip into */ +extern char *net_dns_resolve; /* The host to resolve */ +extern char *net_dns_env_var; /* the env var to put the ip into */ #endif #if defined(CONFIG_CMD_PING) |