diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-09-19 17:21:25 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-10-06 11:31:01 -0400 |
commit | eea1645bb8645cdf40b788dc6f2cbe2309e82411 (patch) | |
tree | 7f868bf4ff09599ec758df0dea4d1baa0462b34a | |
parent | ecd76eded07d1ba58bba410ec4bcbd8630fb9b16 (diff) |
MIPS: Malta: Remove custom DT match table
Since commit 44a7185c2ae6 ("of/platform: Add common method to populate
default bus") the Malta publish_devices initcall has essentially been a
no-op. Remove it.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/14276/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/mti-malta/malta-dt.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/mips/mti-malta/malta-dt.c b/arch/mips/mti-malta/malta-dt.c index 47a22889285f..4822943100f3 100644 --- a/arch/mips/mti-malta/malta-dt.c +++ b/arch/mips/mti-malta/malta-dt.c | |||
@@ -17,18 +17,3 @@ void __init device_tree_init(void) | |||
17 | { | 17 | { |
18 | unflatten_and_copy_device_tree(); | 18 | unflatten_and_copy_device_tree(); |
19 | } | 19 | } |
20 | |||
21 | static const struct of_device_id bus_ids[] __initconst = { | ||
22 | { .compatible = "simple-bus", }, | ||
23 | { .compatible = "isa", }, | ||
24 | {}, | ||
25 | }; | ||
26 | |||
27 | static int __init publish_devices(void) | ||
28 | { | ||
29 | if (!of_have_populated_dt()) | ||
30 | return 0; | ||
31 | |||
32 | return of_platform_bus_probe(NULL, bus_ids, NULL); | ||
33 | } | ||
34 | device_initcall(publish_devices); | ||