diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:03 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:32 -0600 |
commit | 586cbe51ab8ef357bcf3a52c6885ab00bc7293dd (patch) | |
tree | 5f1287a268d0d074f37539fe2d23514cd25bad47 /include | |
parent | 1411157d857840da444db63f6ba3a3a658a99c5b (diff) | |
download | u-boot-imx-586cbe51ab8ef357bcf3a52c6885ab00bc7293dd.zip u-boot-imx-586cbe51ab8ef357bcf3a52c6885ab00bc7293dd.tar.gz u-boot-imx-586cbe51ab8ef357bcf3a52c6885ab00bc7293dd.tar.bz2 |
net: cosmetic: Fixup var names for DHCP strings
Remove CamelCase variable naming.
Move the definition to the same compilation unit as the primary use.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net.h b/include/net.h index c16744a..494930c 100644 --- a/include/net.h +++ b/include/net.h @@ -473,9 +473,9 @@ extern struct in_addr net_dns_server; /* Our 2nd Domain Name Server (0 = unknown) */ extern struct in_addr net_dns_server2; #endif -extern char NetOurNISDomain[32]; /* Our NIS domain */ -extern char NetOurHostName[32]; /* Our hostname */ -extern char NetOurRootPath[64]; /* Our root path */ +extern char net_nis_domain[32]; /* Our IS domain */ +extern char net_hostname[32]; /* Our hostname */ +extern char net_root_path[64]; /* Our root path */ /** END OF BOOTP EXTENTIONS **/ extern uchar NetOurEther[6]; /* Our ethernet address */ extern uchar NetServerEther[6]; /* Boot server enet address */ |