1
0
Fork 0

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>
master
Álvaro Fernández Rojas 2021-02-22 21:33:50 +01:00 committed by Thomas Bogendoerfer
parent 49387f6288
commit faf3c25e51
1 changed files with 1 additions and 1 deletions

View File

@ -196,4 +196,4 @@ static int __init plat_dev_init(void)
return 0;
}
device_initcall(plat_dev_init);
arch_initcall(plat_dev_init);