From: Simon Glass <sjg@chromium.org>
Date: Sun, 5 Feb 2023 22:36:29 +0000 (-0700)
Subject: Correct SPL use of CMD_ERASEENV
X-Git-Tag: v2025.01-rc5-pxa1908~1114^2~101
X-Git-Url: http://git.dujemihanovic.xyz/%22mailto:Murray.Jensen%40csiro.au/static/%7B%7B%20.Permalink%20%7D%7D?a=commitdiff_plain;h=cbacacd5c18e4fac64868112f970345d7732123b;p=u-boot.git

Correct SPL use of CMD_ERASEENV

This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_ERASEENV defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/include/env_internal.h b/include/env_internal.h
index aee6b3e48f..6a69494646 100644
--- a/include/env_internal.h
+++ b/include/env_internal.h
@@ -189,7 +189,7 @@ struct env_driver {
 #endif
 
 #define ENV_SAVE_PTR(x) (CONFIG_IS_ENABLED(SAVEENV) ? (x) : NULL)
-#define ENV_ERASE_PTR(x) (CONFIG_IS_ENABLED(CMD_ERASEENV) ? (x) : NULL)
+#define ENV_ERASE_PTR(x) (IS_ENABLED(CONFIG_CMD_ERASEENV) ? (x) : NULL)
 
 extern struct hsearch_data env_htab;