|
@@ -658,13 +658,13 @@ static int signal_setup(void)
|
|
|
save_fp_context = _save_fp_context;
|
|
|
restore_fp_context = _restore_fp_context;
|
|
|
} else {
|
|
|
- save_fp_context = copy_fp_from_sigcontext;
|
|
|
- restore_fp_context = copy_fp_to_sigcontext;
|
|
|
+ save_fp_context = copy_fp_to_sigcontext;
|
|
|
+ restore_fp_context = copy_fp_from_sigcontext;
|
|
|
}
|
|
|
#endif /* CONFIG_SMP */
|
|
|
#else
|
|
|
- save_fp_context = copy_fp_from_sigcontext;;
|
|
|
- restore_fp_context = copy_fp_to_sigcontext;
|
|
|
+ save_fp_context = copy_fp_to_sigcontext;
|
|
|
+ restore_fp_context = copy_fp_from_sigcontext;
|
|
|
#endif
|
|
|
|
|
|
return 0;
|