Skip to content

Commit bc2dba9

Browse files
sjg20trini
authored andcommitted
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 <[email protected]>
1 parent 7032fa2 commit bc2dba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/board_r.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static int initr_reloc_global_data(void)
155155
* The fdt_blob needs to be moved to new relocation address
156156
* incase of FDT blob is embedded with in image
157157
*/
158-
if (CONFIG_IS_ENABLED(OF_EMBED) && IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC))
158+
if (IS_ENABLED(CONFIG_OF_EMBED) && IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC))
159159
gd->fdt_blob += gd->reloc_off;
160160

161161
#ifdef CONFIG_EFI_LOADER

0 commit comments

Comments
 (0)