diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2021-02-22 21:33:50 +0100 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2021-02-23 13:23:35 +0100 |
commit | faf3c25e51a7e91b69ea26da72c74a8786af7968 (patch) | |
tree | aa5cb0a4f59901c0b663e1624ab5ab097828e94a /arch/mips/bmips | |
parent | 49387f628840eac1e7e1113f4f2c150cdecf88c7 (diff) | |
download | linux-faf3c25e51a7e91b69ea26da72c74a8786af7968.tar.bz2 |
mips: bmips: init clocks earlier
device_initcall() is too late for bcm63xx.
We need to call of_clk_init() earlier in order to properly boot.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/bmips')
-rw-r--r-- | arch/mips/bmips/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bmips/setup.c b/arch/mips/bmips/setup.c index 95f8f10d8697..31bcfa4e08b9 100644 --- a/arch/mips/bmips/setup.c +++ b/arch/mips/bmips/setup.c @@ -196,4 +196,4 @@ static int __init plat_dev_init(void) return 0; } -device_initcall(plat_dev_init); +arch_initcall(plat_dev_init); |