Messages in this thread Patch in this message |  | | From | Geert Uytterhoeven <> | Subject | [PATCH 2/9] arc: Use NULL as the default DTB | Date | Tue, 19 Nov 2013 12:12:27 +0100 |
| |
early_init_dt_scan() now takes care of falling back to the built-in DTB.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Vineet Gupta <vgupta@synopsys.com> --- arch/arc/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index ef705d0f50f5..481e11240e12 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c @@ -314,7 +314,7 @@ void setup_processor(void) void __init setup_arch(char **cmdline_p) { /* This also populates @boot_command_line from /bootargs */ - machine_desc = setup_machine_fdt(&__dtb_start); + machine_desc = setup_machine_fdt(NULL); if (!machine_desc) panic("Embedded DT invalid\n"); -- 1.7.9.5
|  |