diff options
author | Simon Glass | 2021-07-14 17:05:36 -0500 |
---|---|---|
committer | Tom Rini | 2021-07-16 12:58:55 -0400 |
commit | 70c1c8927e2c1fd97cd174d7924300d672e8313b (patch) | |
tree | 3808e9332bd97a5be0c82b0435712e106bac6e62 /common/image-fit.c | |
parent | 14f061dcb158a4ffbf09df10f2ac2d37c157437c (diff) |
image: Drop IMAGE_ENABLE_BEST_MATCH
This is not needed with Kconfig, since we can use IS_ENABLED() easily
enough. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'common/image-fit.c')
-rw-r--r-- | common/image-fit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-fit.c b/common/image-fit.c index 031d9d34c31..8e23d51cf25 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -2027,7 +2027,7 @@ int fit_image_load(bootm_headers_t *images, ulong addr, * fit_conf_get_node() will try to find default config node */ bootstage_mark(bootstage_id + BOOTSTAGE_SUB_NO_UNIT_NAME); - if (IMAGE_ENABLE_BEST_MATCH && !fit_uname_config) { + if (IS_ENABLED(CONFIG_FIT_BEST_MATCH) && !fit_uname_config) { cfg_noffset = fit_conf_find_compat(fit, gd_fdt_blob()); } else { cfg_noffset = fit_conf_get_node(fit, |