From: Rob Herring Date: Tue, 19 Jun 2018 21:41:34 +0000 (-0600) Subject: riscv: remove unnecessary of_platform_populate call X-Git-Tag: v5.15~8487^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f67f10b8a6c96ab6c1d6946d269e2ca5f9998cc2;p=platform%2Fkernel%2Flinux-starfive.git riscv: remove unnecessary of_platform_populate call The DT core will call of_platform_default_populate, so it is not necessary for arch specific code to call it unless there are custom match entries, auxdata or parent device. Neither of those apply here, so remove the call. Cc: Palmer Dabbelt Cc: Albert Ou Cc: linux-riscv@lists.infradead.org Signed-off-by: Rob Herring Signed-off-by: Palmer Dabbelt --- diff --git a/arch/riscv/kernel/setup.c b/arch/riscv/kernel/setup.c index ee44a48f..f0d2070 100644 --- a/arch/riscv/kernel/setup.c +++ b/arch/riscv/kernel/setup.c @@ -220,8 +220,3 @@ void __init setup_arch(char **cmdline_p) riscv_fill_hwcap(); } -static int __init riscv_device_init(void) -{ - return of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); -} -subsys_initcall_sync(riscv_device_init);