diff options
author | Simon Glass <sjg@chromium.org> | 2011-10-24 18:00:05 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-26 21:34:44 +0200 |
commit | 58f317d1823c34b41990f21931d143a6606f5507 (patch) | |
tree | 62ec42cc1c56ab96622a8487708fb2e16e0e4eb8 /include/net.h | |
parent | e4cde2f70d2377fdf484cbbc1729b188f81b8ec8 (diff) | |
download | u-boot-imx-58f317d1823c34b41990f21931d143a6606f5507.zip u-boot-imx-58f317d1823c34b41990f21931d143a6606f5507.tar.gz u-boot-imx-58f317d1823c34b41990f21931d143a6606f5507.tar.bz2 |
net: tftpput: Support selecting get/put for tftp
TftpStart should support starting either a get or a put.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/net.h')
-rw-r--r-- | include/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net.h b/include/net.h index 495f60e..b408dea 100644 --- a/include/net.h +++ b/include/net.h @@ -367,7 +367,7 @@ extern int NetRestartWrap; /* Tried all network devices */ enum proto_t { BOOTP, RARP, ARP, TFTPGET, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP, - TFTPSRV + TFTPSRV, TFTPPUT }; /* from net/net.c */ |