diff options
| author | Martin Blumenstingl <[email protected]> | 2017-08-20 00:18:08 +0200 |
|---|---|---|
| committer | Ralf Baechle <[email protected]> | 2017-09-04 13:53:15 +0200 |
| commit | d0fd35c6cca79646b9a7bc440cc02839561fc30a (patch) | |
| tree | ee784ebf634873dca425fcf70c4c081fefe83225 | |
| parent | 7f15a6483111843859450e07ec34333d3d6e5adc (diff) | |
MIPS: lantiq: Use of_platform_default_populate instead of __dt_register_buses
This allows populating syscon devices which are using "simple-mfd"
instead of "simple-bus".
Signed-off-by: Hauke Mehrtens <[email protected]>
Signed-off-by: Martin Blumenstingl <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/17116/
Signed-off-by: Ralf Baechle <[email protected]>
| -rw-r--r-- | arch/mips/lantiq/prom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lantiq/prom.c b/arch/mips/lantiq/prom.c index 96773bed8a8a..9ff7ccde9de0 100644 --- a/arch/mips/lantiq/prom.c +++ b/arch/mips/lantiq/prom.c @@ -117,7 +117,7 @@ void __init prom_init(void) int __init plat_of_setup(void) { - return __dt_register_buses(soc_info.compatible, "simple-bus"); + return of_platform_default_populate(NULL, NULL, NULL); } arch_initcall(plat_of_setup); |