OSDN Git Service

MIPS: Remove redundant check in device_tree_init()
authorTiezhu Yang <yangtiezhu@loongson.cn>
Thu, 10 Mar 2022 06:50:10 +0000 (14:50 +0800)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Mon, 14 Mar 2022 14:07:49 +0000 (15:07 +0100)
In device_tree_init(), unflatten_and_copy_device_tree() checks
initial_boot_params, so remove the redundant check.

drivers/of/fdt.c
void __init unflatten_and_copy_device_tree(void)
{
int size;
void *dt;

if (!initial_boot_params) {
pr_warn("No valid device tree found, continuing without\n");
return;
}
...
}

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/loongson64/setup.c
arch/mips/pic32/pic32mzda/init.c

index 6fe3fff..1973eb0 100644 (file)
@@ -39,8 +39,5 @@ void __init plat_mem_setup(void)
 
 void __init device_tree_init(void)
 {
-       if (!initial_boot_params)
-               return;
-
        unflatten_and_copy_device_tree();
 }
index 764f2d0..a1860f2 100644 (file)
@@ -80,9 +80,6 @@ void __init prom_init(void)
 
 void __init device_tree_init(void)
 {
-       if (!initial_boot_params)
-               return;
-
        unflatten_and_copy_device_tree();
 }