From: Simon Glass Date: Sun, 5 Feb 2023 22:39:50 +0000 (-0700) Subject: Correct SPL use of ENV_WRITEABLE_LIST X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=28de1e06c9f3f51e80f62ea3fa72af8ff1058728;p=u-boot.git Correct SPL use of ENV_WRITEABLE_LIST This converts 1 usage of this option to the non-SPL form, since there is no SPL_ENV_WRITEABLE_LIST defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/lib/hashtable.c b/lib/hashtable.c index 90c8465611..f2d36bd34b 100644 --- a/lib/hashtable.c +++ b/lib/hashtable.c @@ -942,7 +942,7 @@ int himport_r(struct hsearch_data *htab, e.data = value; hsearch_r(e, ENV_ENTER, &rv, htab, flag); -#if !CONFIG_IS_ENABLED(ENV_WRITEABLE_LIST) +#if !IS_ENABLED(CONFIG_ENV_WRITEABLE_LIST) if (rv == NULL) { printf("himport_r: can't insert \"%s=%s\" into hash table\n", name, value);