diff options
| author | Tom Rini <[email protected]> | 2021-02-14 14:08:17 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-02-15 10:06:23 -0500 |
| commit | e31350c3c466f1a548ae6a224be0cc84ad6c2163 (patch) | |
| tree | e159f10b25959a7e138b7f9f0c6e05c222c7bd64 /lib | |
| parent | a6ba59583abd4085db5ab00358d751f175e2a451 (diff) | |
Revert "fdtdec: Use CONFIG_IS_ENABLED in board_fdt_blob_setup()"
On Rockchip platforms we need this area of code in TPL, but there is no
TPL_SEPARATE_BSS symbol.
This reverts commit 0a2aaab0b678fd1778ff2fc59d0770fc82995532.
Reported-by: Markus Reichl <[email protected]>
Reported-by: Jesper Schmitz Mouridsen <[email protected]>
Reported-by: Peter Robinson <[email protected]>
Tested-by: Peter Robinson <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fdtdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index e048f7777d6..9d833f6a563 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -1253,7 +1253,7 @@ __weak void *board_fdt_blob_setup(void) void *fdt_blob = NULL; #ifdef CONFIG_SPL_BUILD /* FDT is at end of BSS unless it is in a different memory region */ - if (CONFIG_IS_ENABLED(SEPARATE_BSS)) + if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS)) fdt_blob = (ulong *)&_image_binary_end; else fdt_blob = (ulong *)&__bss_end; |
