diff options
author | Paul Cercueil <paul@crapouillou.net> | 2020-07-30 18:12:31 +0200 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-07-31 17:48:19 +0200 |
commit | 199c5f080ed695c4b01236e06743a28952403d17 (patch) | |
tree | 0c8440a4633944109f91d1919bf0fd4ba308ee97 /arch/mips/jz4740 | |
parent | 37e5c69ffd4195c35aeb24978701f40ac82af7b1 (diff) | |
download | linux-199c5f080ed695c4b01236e06743a28952403d17.tar.gz linux-199c5f080ed695c4b01236e06743a28952403d17.tar.bz2 linux-199c5f080ed695c4b01236e06743a28952403d17.zip |
MIPS: ingenic: Use fw_passed_dtb even if CONFIG_BUILTIN_DTB
The fw_passed_dtb is now properly initialized even when
CONFIG_BUILTIN_DTB is used, so there's no need to handle it in any
particular way here.
Note that the behaviour is slightly different, as the previous code used
the built-in Device Tree unconditionally, while now the built-in Device
Tree is only used when the bootloader did not provide one.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/jz4740')
-rw-r--r-- | arch/mips/jz4740/setup.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/mips/jz4740/setup.c b/arch/mips/jz4740/setup.c index fc49601c2b96..d73c9b722bf3 100644 --- a/arch/mips/jz4740/setup.c +++ b/arch/mips/jz4740/setup.c @@ -67,13 +67,8 @@ static unsigned long __init get_board_mach_type(const void *fdt) void __init plat_mem_setup(void) { + void *dtb = (void *)fw_passed_dtb; int offset; - void *dtb; - - if (__dtb_start != __dtb_end) - dtb = __dtb_start; - else - dtb = (void *)fw_passed_dtb; __dt_setup_arch(dtb); |