diff options
author | Simon Glass <sjg@chromium.org> | 2011-10-24 18:00:02 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-26 21:33:42 +0200 |
commit | e4bf0c5cfe1d7b2059a6802c9e11d567c928dbb1 (patch) | |
tree | b7119fed80e0e6bca1062215762c8ee2e414e747 /board/hymod | |
parent | 4793ee6522f10a3d108de7e47adbcf5f15eb3f46 (diff) | |
download | u-boot-imx-e4bf0c5cfe1d7b2059a6802c9e11d567c928dbb1.zip u-boot-imx-e4bf0c5cfe1d7b2059a6802c9e11d567c928dbb1.tar.gz u-boot-imx-e4bf0c5cfe1d7b2059a6802c9e11d567c928dbb1.tar.bz2 |
net: tftpput: Rename TFTP to TFTPGET
This is a better name for this protocol. Also remove the typedef to keep
checkpatch happy, and move zeroing of NetBootFileXferSize a little
earlier since TFTPPUT will need to change this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/hymod')
-rw-r--r-- | board/hymod/bsp.c | 2 | ||||
-rw-r--r-- | board/hymod/fetch.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/hymod/bsp.c b/board/hymod/bsp.c index 2cd3707..cd9c4e2 100644 --- a/board/hymod/bsp.c +++ b/board/hymod/bsp.c @@ -200,7 +200,7 @@ do_fpga (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[]) load_addr = simple_strtoul (argv[3], NULL, 16); NetBootFileXferSize = 0; - if (NetLoop (TFTP) <= 0) { + if (NetLoop(TFTPGET) <= 0) { printf ("tftp transfer failed - aborting " "fgpa load\n"); return 1; diff --git a/board/hymod/fetch.c b/board/hymod/fetch.c index e121d55..f5f9582 100644 --- a/board/hymod/fetch.c +++ b/board/hymod/fetch.c @@ -55,7 +55,7 @@ fetch_and_parse (char *fn, ulong addr, int (*cback)(uchar *, uchar *)) load_addr = addr; NetBootFileXferSize = 0; - if (NetLoop (TFTP) == 0) { + if (NetLoop(TFTPGET) == 0) { printf ("tftp transfer of file '%s' failed\n", fn); return (0); } |