summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/i387.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-02-13 21:47:25 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2012-02-13 21:47:25 (GMT)
commitbe98c2cdb15ba26148cd2bd58a857d4f7759ed38 (patch)
tree5eb1bdb4e443680c12901add5dc23a9cd3468872 /arch/x86/include/asm/i387.h
parent3ec1e88b33a3bdd852ce8e014052acec7a9da8b5 (diff)
downloadlinux-fsl-qoriq-be98c2cdb15ba26148cd2bd58a857d4f7759ed38.tar.xz
i387: math_state_restore() isn't called from asm
It was marked asmlinkage for some really old and stale legacy reasons. Fix that and the equally stale comment. Noticed when debugging the irq_fpu_usable() bugs. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/include/asm/i387.h')
-rw-r--r--arch/x86/include/asm/i387.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/i387.h b/arch/x86/include/asm/i387.h
index 6919e93..a5c7ae5 100644
--- a/arch/x86/include/asm/i387.h
+++ b/arch/x86/include/asm/i387.h
@@ -29,7 +29,7 @@ extern unsigned int sig_xstate_size;
extern void fpu_init(void);
extern void mxcsr_feature_mask_init(void);
extern int init_fpu(struct task_struct *child);
-extern asmlinkage void math_state_restore(void);
+extern void math_state_restore(void);
extern void __math_state_restore(void);
extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);