diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-04-08 01:41:10 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:33 -0600 |
commit | 68c76a3a38a008e162581d0785618a898cc7944b (patch) | |
tree | 639831b6a0ec433e8995ac367d5890daa98e70fb /net/net.c | |
parent | 7044c6bb69ca654a229c208065f5b0777f05af5f (diff) | |
download | u-boot-68c76a3a38a008e162581d0785618a898cc7944b.tar.gz |
net: cosmetic: Clean up NFS variables and functions
Make a thorough pass through all variables and function names contained
within nfs.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 'net/net.c')
-rw-r--r-- | net/net.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -235,7 +235,7 @@ void net_auto_load(void) /* * Use NFS to load the bootfile. */ - NfsStart(); + nfs_start(); return; } #endif @@ -407,7 +407,7 @@ restart: #endif #if defined(CONFIG_CMD_NFS) case NFS: - NfsStart(); + nfs_start(); break; #endif #if defined(CONFIG_CMD_CDP) |