diff options
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/kernel/setup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c index 7665a9bfdb1e..894c1e5ed609 100644 --- a/arch/arm64/kernel/setup.c +++ b/arch/arm64/kernel/setup.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <linux/proc_fs.h> | 39 | #include <linux/proc_fs.h> |
40 | #include <linux/memblock.h> | 40 | #include <linux/memblock.h> |
41 | #include <linux/of_fdt.h> | 41 | #include <linux/of_fdt.h> |
42 | #include <linux/of_platform.h> | ||
42 | 43 | ||
43 | #include <asm/cputype.h> | 44 | #include <asm/cputype.h> |
44 | #include <asm/elf.h> | 45 | #include <asm/elf.h> |
@@ -289,6 +290,13 @@ static int __init topology_init(void) | |||
289 | } | 290 | } |
290 | subsys_initcall(topology_init); | 291 | subsys_initcall(topology_init); |
291 | 292 | ||
293 | static int __init arm64_device_probe(void) | ||
294 | { | ||
295 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | ||
296 | return 0; | ||
297 | } | ||
298 | device_initcall(arm64_device_probe); | ||
299 | |||
292 | static const char *hwcap_str[] = { | 300 | static const char *hwcap_str[] = { |
293 | "fp", | 301 | "fp", |
294 | "asimd", | 302 | "asimd", |