Correct SPL use of OF_EMBED
This converts 1 usage of this option to the non-SPL form, since there is no SPL_OF_EMBED defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7032fa28fd
commit
bc2dba9603
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ static int initr_reloc_global_data(void)
|
|||
* The fdt_blob needs to be moved to new relocation address
|
||||
* incase of FDT blob is embedded with in image
|
||||
*/
|
||||
if (CONFIG_IS_ENABLED(OF_EMBED) && IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC))
|
||||
if (IS_ENABLED(CONFIG_OF_EMBED) && IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC))
|
||||
gd->fdt_blob += gd->reloc_off;
|
||||
|
||||
#ifdef CONFIG_EFI_LOADER
|
||||
|
|
Loading…
Reference in a new issue