[U-Boot] [PATCH v2 3/5] tools/env: Don't call env_init() in fw_getenv()
Joe Hershberger
joe.hershberger at ni.com
Wed Oct 3 21:38:48 CEST 2012
We will only call fw_getenv when the env has already been initialized.
Signed-off-by: Joe Hershberger <joe.hershberger at ni.com>
---
tools/env/fw_env.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index af879f1..f883804 100644
--- a/tools/env/fw_env.c
+++ b/tools/env/fw_env.c
@@ -258,9 +258,6 @@ char *fw_getenv (char *name)
{
char *env, *nxt;
- if (fw_env_open())
- return NULL;
-
for (env = environment.data; *env; env = nxt + 1) {
char *val;
--
1.7.11.5
More information about the U-Boot
mailing list