aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/xilfpga/init.c
diff options
context:
space:
mode:
authorKefeng Wang <wangkefeng.wang@huawei.com>2016-06-01 02:53:01 -0400
committerRob Herring <robh@kernel.org>2016-06-23 16:00:29 -0400
commitddd0ce87bfdebbc92c639286a2bf1241f335e6c8 (patch)
tree1e33c7bc38813efde5a2c7c31c470105006a5df8 /arch/mips/xilfpga/init.c
parent17033917ce7b59fdc07f579693b083b39f08ff93 (diff)
mips: Remove unnecessary of_platform_populate with default match table
After patch "of/platform: Add common method to populate default bus", it is possible for arch code to remove unnecessary callers of of_platform_populate with default match table. Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Alban Bedel <albeu@free.fr> Cc: Paul Burton <paul.burton@imgtec.com> Cc: James Hogan <james.hogan@imgtec.com> Cc: Joshua Henderson <joshua.henderson@microchip.com> Cc: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'arch/mips/xilfpga/init.c')
-rw-r--r--arch/mips/xilfpga/init.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/mips/xilfpga/init.c b/arch/mips/xilfpga/init.c
index ce2aee2169ac..602e384a26a2 100644
--- a/arch/mips/xilfpga/init.c
+++ b/arch/mips/xilfpga/init.c
@@ -10,7 +10,6 @@
10 */ 10 */
11 11
12#include <linux/of_fdt.h> 12#include <linux/of_fdt.h>
13#include <linux/of_platform.h>
14 13
15#include <asm/prom.h> 14#include <asm/prom.h>
16 15
@@ -43,15 +42,3 @@ void __init device_tree_init(void)
43 42
44 unflatten_and_copy_device_tree(); 43 unflatten_and_copy_device_tree();
45} 44}
46
47static int __init plat_of_setup(void)
48{
49 if (!of_have_populated_dt())
50 panic("Device tree not present");
51
52 if (of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL))
53 panic("Failed to populate DT");
54
55 return 0;
56}
57arch_initcall(plat_of_setup);