2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-19 10:44:14 +08:00

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>
This commit is contained in:
Álvaro Fernández Rojas 2021-02-22 21:33:50 +01:00 committed by Thomas Bogendoerfer
parent 49387f6288
commit faf3c25e51

View File

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