summaryrefslogtreecommitdiffstats
path: root/net/net.c
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2015-04-08 01:41:07 -0500
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:33 -0600
commit8885c5fe90ef43d087c9b2cc3a0f907aff90bd76 (patch)
tree6a191690ed2241d4bc6143a7e1c7dece2e9c5eda /net/net.c
parent1fd92db83d399ff7918e51ba84bc73d2466b5eb6 (diff)
downloadtalos-obmc-uboot-8885c5fe90ef43d087c9b2cc3a0f907aff90bd76.tar.gz
talos-obmc-uboot-8885c5fe90ef43d087c9b2cc3a0f907aff90bd76.zip
net: cosmetic: Clean up TFTP variables and functions
Make a thorough pass through all variables and function names contained within tftp 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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/net.c b/net/net.c
index 58982605d2..b8acbb4e06 100644
--- a/net/net.c
+++ b/net/net.c
@@ -247,7 +247,7 @@ void net_auto_load(void)
net_set_state(NETLOOP_SUCCESS);
return;
}
- TftpStart(TFTPGET);
+ tftp_start(TFTPGET);
}
static void NetInitLoop(void)
@@ -372,11 +372,11 @@ restart:
case TFTPPUT:
#endif
/* always use ARP to get server ethernet address */
- TftpStart(protocol);
+ tftp_start(protocol);
break;
#ifdef CONFIG_CMD_TFTPSRV
case TFTPSRV:
- TftpStartServer();
+ tftp_start_server();
break;
#endif
#if defined(CONFIG_CMD_DHCP)
OpenPOWER on IntegriCloud