[U-Boot] [PATCH] arm: fdt_control: fix a build error with CONFIG_OF_EMBED=y

The build fails if a non-generic ARM board is compiled with CONFIG_OF_EMBED=y.
The correct symbol name for embedded FDT is not __dtb_db_begin, but __dtb_dt_begin. (A typo introduced by commit 6ab6b2af)
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com --- arch/arm/lib/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 92e85c4..d5fabe4 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -277,7 +277,7 @@ void board_init_f(ulong bootflag) gd->mon_len = (ulong)&__bss_end - (ulong)_start; #ifdef CONFIG_OF_EMBED /* Get a pointer to the FDT */ - gd->fdt_blob = __dtb_db_begin; + gd->fdt_blob = __dtb_dt_begin; #elif defined CONFIG_OF_SEPARATE /* FDT is at end of image */ gd->fdt_blob = &_end;

Hi Masahiro,
On 25 April 2014 06:51, Masahiro Yamada yamada.m@jp.panasonic.com wrote:
The build fails if a non-generic ARM board is compiled with CONFIG_OF_EMBED=y.
The correct symbol name for embedded FDT is not __dtb_db_begin, but __dtb_dt_begin. (A typo introduced by commit 6ab6b2af)
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com
This is a bug-fix.
Acked-by: Simon Glass sjg@chromium.org
This should be copied to the ARM maintainer.
Regards, Simon

On Fri, Apr 25, 2014 at 09:51:09PM +0900, Masahiro Yamada wrote:
The build fails if a non-generic ARM board is compiled with CONFIG_OF_EMBED=y.
The correct symbol name for embedded FDT is not __dtb_db_begin, but __dtb_dt_begin. (A typo introduced by commit 6ab6b2af)
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com Acked-by: Simon Glass sjg@chromium.org
Applied to u-boot/master, thanks!
participants (3)
-
Masahiro Yamada
-
Simon Glass
-
Tom Rini