mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 14:56:03 +00:00
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 <sjg@chromium.org>
This commit is contained in:
parent
b2561c5bea
commit
28de1e06c9
1 changed files with 1 additions and 1 deletions
|
@ -942,7 +942,7 @@ int himport_r(struct hsearch_data *htab,
|
||||||
e.data = value;
|
e.data = value;
|
||||||
|
|
||||||
hsearch_r(e, ENV_ENTER, &rv, htab, flag);
|
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) {
|
if (rv == NULL) {
|
||||||
printf("himport_r: can't insert \"%s=%s\" into hash table\n",
|
printf("himport_r: can't insert \"%s=%s\" into hash table\n",
|
||||||
name, value);
|
name, value);
|
||||||
|
|
Loading…
Add table
Reference in a new issue