summaryrefslogtreecommitdiffstats
path: root/env/fat.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-08-01 09:47:00 -0600
committerTom Rini <trini@konsulko.com>2019-08-11 16:43:41 -0400
commit0ac7d722ede8e64973f68dbcd07b9521ba04cb63 (patch)
tree179942d65436fafe8d1c3193bd15913f3b2c5f18 /env/fat.c
parent1f3db0c135fcaf40ff88bdcd058b56bc7e1f58f3 (diff)
downloadu-boot-0ac7d722ede8e64973f68dbcd07b9521ba04cb63.tar.gz
u-boot-0ac7d722ede8e64973f68dbcd07b9521ba04cb63.tar.xz
u-boot-0ac7d722ede8e64973f68dbcd07b9521ba04cb63.zip
env: Move get/set_default_env() to env.h
Move these functions to the new header file and rename set_default_env() to env_set_default() so that it has a consistent env_ prefix. Acked-by: Joe Hershberger <joe.hershberger@ni.com> Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'env/fat.c')
-rw-r--r--env/fat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/env/fat.c b/env/fat.c
index 7f74c64dfe..d23753c6ff 100644
--- a/env/fat.c
+++ b/env/fat.c
@@ -9,6 +9,7 @@
#include <common.h>
#include <command.h>
+#include <env.h>
#include <environment.h>
#include <linux/stddef.h>
#include <malloc.h>
@@ -122,7 +123,7 @@ static int env_fat_load(void)
return env_import(buf, 1);
err_env_relocate:
- set_default_env(NULL, 0);
+ env_set_default(NULL, 0);
return -EIO;
}