]> git.baikalelectronics.ru Git - uboot.git/commitdiff
Correct SPL use of CMD_ERASEENV
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:36:29 +0000 (15:36 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:25 +0000 (16:32 -0500)
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>
include/env_internal.h

index aee6b3e48fa0253273a6ff2218d0bedce36b33b2..6a69494646893aaeb227ebfb43839cd0ab76b20c 100644 (file)
@@ -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;