[U-Boot] [PATCH v2 04/12] env_mmc.c: Remove NULL check on tmp_env1/2
Tom Rini
trini at ti.com
Mon Dec 9 19:08:50 CET 2013
With 452a272 we moved to allocating these variables on the stack. So
they will never now be NULL so remove these checks.
Signed-off-by: Tom Rini <trini at ti.com>
---
common/env_mmc.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/common/env_mmc.c b/common/env_mmc.c
index d42168b..f47bd77 100644
--- a/common/env_mmc.c
+++ b/common/env_mmc.c
@@ -220,12 +220,6 @@ void env_relocate_spec(void)
mmc = find_mmc_device(dev);
- if (tmp_env1 == NULL || tmp_env2 == NULL) {
- puts("Can't allocate buffers for environment\n");
- ret = 1;
- goto err;
- }
-
if (init_mmc_for_env(mmc)) {
ret = 1;
goto err;
--
1.7.9.5
More information about the U-Boot
mailing list