mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-27 00:51:50 +00:00
env: Rename setenv() to env_set()
We are now using an env_ prefix for environment functions. Rename setenv() for consistency. Also add function comments in common.h. Suggested-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
01510091de
commit
382bee57f1
156 changed files with 470 additions and 454 deletions
|
@ -67,7 +67,7 @@ static int update_load(char *filename, ulong msec_max, int cnt_max, ulong addr)
|
|||
tftp_timeout_count_max = cnt_max;
|
||||
|
||||
/* we don't want to retry the connection if errors occur */
|
||||
setenv("netretry", "no");
|
||||
env_set("netretry", "no");
|
||||
|
||||
/* download the update file */
|
||||
load_addr = addr;
|
||||
|
@ -83,7 +83,7 @@ static int update_load(char *filename, ulong msec_max, int cnt_max, ulong addr)
|
|||
tftp_timeout_ms = saved_timeout_msecs;
|
||||
tftp_timeout_count_max = saved_timeout_count;
|
||||
|
||||
setenv("netretry", saved_netretry);
|
||||
env_set("netretry", saved_netretry);
|
||||
if (saved_netretry != NULL)
|
||||
free(saved_netretry);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue