mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
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>
This commit is contained in:
parent
4793ee6522
commit
e4bf0c5cfe
7 changed files with 23 additions and 23 deletions
|
@ -365,8 +365,10 @@ extern int NetState; /* Network loop state */
|
|||
|
||||
extern int NetRestartWrap; /* Tried all network devices */
|
||||
|
||||
typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP,
|
||||
TFTPSRV } proto_t;
|
||||
enum proto_t {
|
||||
BOOTP, RARP, ARP, TFTPGET, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP,
|
||||
TFTPSRV
|
||||
};
|
||||
|
||||
/* from net/net.c */
|
||||
extern char BootFile[128]; /* Boot File name */
|
||||
|
@ -392,7 +394,7 @@ extern int NetTimeOffset; /* offset time from UTC */
|
|||
#endif
|
||||
|
||||
/* Initialize the network adapter */
|
||||
extern int NetLoop(proto_t);
|
||||
extern int NetLoop(enum proto_t);
|
||||
|
||||
/* Shutdown adapters and cleanup */
|
||||
extern void NetStop(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue