x86/fpu: Mark init functions __init

No point in keeping them around.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20230613224545.841685728@linutronix.de

+2 -2
+2 -2
arch/x86/kernel/fpu/init.c
··· 53 53 fpu__init_cpu_xstate(); 54 54 } 55 55 56 - static bool fpu__probe_without_cpuid(void) 56 + static bool __init fpu__probe_without_cpuid(void) 57 57 { 58 58 unsigned long cr0; 59 59 u16 fsw, fcw; ··· 71 71 return fsw == 0 && (fcw & 0x103f) == 0x003f; 72 72 } 73 73 74 - static void fpu__init_system_early_generic(void) 74 + static void __init fpu__init_system_early_generic(void) 75 75 { 76 76 if (!boot_cpu_has(X86_FEATURE_CPUID) && 77 77 !test_bit(X86_FEATURE_FPU, (unsigned long *)cpu_caps_cleared)) {