arch: Make board selection choices optional
[platform/kernel/u-boot.git] / net / tftp.h
index 2b686e3..c411c9b 100644 (file)
  */
 
 /* tftp.c */
-void TftpStart(enum proto_t protocol); /* Begin TFTP get/put */
+void tftp_start(enum proto_t protocol);        /* Begin TFTP get/put */
 
 #ifdef CONFIG_CMD_TFTPSRV
-extern void TftpStartServer(void);     /* Wait for incoming TFTP put */
+void tftp_start_server(void);  /* Wait for incoming TFTP put */
 #endif
 
-extern ulong TftpRRQTimeoutMSecs;
-extern int TftpRRQTimeoutCountMax;
+extern ulong tftp_timeout_ms;
+extern int tftp_timeout_count_max;
 
 /**********************************************************************/