diff options
| author | Simon Glass <[email protected]> | 2017-08-03 12:22:09 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-08-16 08:22:18 -0400 |
| commit | 382bee57f19b4454e2015bc19a010bc2d0ab9337 (patch) | |
| tree | 8c13efda2a6539cdbf1ac76fc458ffef1e9c966d /common/console.c | |
| parent | 01510091de905c46620757b9027b2e55c4b3b313 (diff) | |
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 <[email protected]>
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'common/console.c')
| -rw-r--r-- | common/console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/console.c b/common/console.c index ec4af3bd90d..3f7ca2baa7a 100644 --- a/common/console.c +++ b/common/console.c @@ -801,7 +801,7 @@ done: #ifdef CONFIG_SYS_CONSOLE_ENV_OVERWRITE /* set the environment variables (will overwrite previous env settings) */ for (i = 0; i < 3; i++) { - setenv(stdio_names[i], stdio_devices[i]->name); + env_set(stdio_names[i], stdio_devices[i]->name); } #endif /* CONFIG_SYS_CONSOLE_ENV_OVERWRITE */ @@ -880,7 +880,7 @@ int console_init_r(void) /* Setting environment variables */ for (i = 0; i < 3; i++) { - setenv(stdio_names[i], stdio_devices[i]->name); + env_set(stdio_names[i], stdio_devices[i]->name); } gd->flags |= GD_FLG_DEVINIT; /* device initialization completed */ |
