1
0
Fork 0

ARM: move VFP init to an earlier boot stage

In order to use the NEON unit in the kernel, we should
initialize it a bit earlier in the boot process so NEON users
that like to do a quick benchmark at load time (like the
xor_blocks or RAID-6 code) find the NEON/VFP unit already
enabled.

Replaced late_initcall() with core_initcall().

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: Nicolas Pitre <nico@linaro.org>
hifive-unleashed-5.1
Ard Biesheuvel 2013-05-22 10:38:53 +02:00
parent 8bb495e3f0
commit 0773d73d81
1 changed files with 1 additions and 1 deletions

View File

@ -731,4 +731,4 @@ static int __init vfp_init(void)
return 0;
}
late_initcall(vfp_init);
core_initcall(vfp_init);