···71 return fsw == 0 && (fcw & 0x103f) == 0x003f;72}7374-static void fpu__init_system_early_generic(struct cpuinfo_x86 *c)75{76 if (!boot_cpu_has(X86_FEATURE_CPUID) &&77 !test_bit(X86_FEATURE_FPU, (unsigned long *)cpu_caps_cleared)) {···211 * Called on the boot CPU once per system bootup, to set up the initial212 * FPU state that is later cloned into all processes:213 */214-void __init fpu__init_system(struct cpuinfo_x86 *c)215{216 fpstate_reset(¤t->thread.fpu);217- fpu__init_system_early_generic(c);218219 /*220 * The FPU has to be operational for some of the
···71 return fsw == 0 && (fcw & 0x103f) == 0x003f;72}7374+static void fpu__init_system_early_generic(void)75{76 if (!boot_cpu_has(X86_FEATURE_CPUID) &&77 !test_bit(X86_FEATURE_FPU, (unsigned long *)cpu_caps_cleared)) {···211 * Called on the boot CPU once per system bootup, to set up the initial212 * FPU state that is later cloned into all processes:213 */214+void __init fpu__init_system(void)215{216 fpstate_reset(¤t->thread.fpu);217+ fpu__init_system_early_generic();218219 /*220 * The FPU has to be operational for some of the