diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:02 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:32 -0600 |
commit | 1411157d857840da444db63f6ba3a3a658a99c5b (patch) | |
tree | 472a608659ae85e46e876789bc52a8f38d160237 /net/eth.c | |
parent | 049a95a7759c0e384c1fc7b8575d968d56a33997 (diff) |
net: cosmetic: Fixup var names related to boot file
The variables around the bootfile were inconsistent and used CamelCase.
Update them to make the code more readable.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/eth.c')
-rw-r--r-- | net/eth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/eth.c b/net/eth.c index c1d6b04f071..f06fdb27439 100644 --- a/net/eth.c +++ b/net/eth.c @@ -66,7 +66,8 @@ static void eth_env_init(void) s = getenv("bootfile"); if (s != NULL) - copy_filename(BootFile, s, sizeof(BootFile)); + copy_filename(net_boot_file_name, s, + sizeof(net_boot_file_name)); } static int eth_mac_skip(int index) |