提交 67cc09ed 编写于 作者: G Greg Ungerer

m68knommu: move EXPORT of dump_fpu to function definition

The EXPORT_SYMBOL(dump_fpu) belongs at the definition of the function,
not in some other random code file. So move it there.
Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
上级 b1ffa259
...@@ -16,12 +16,8 @@ ...@@ -16,12 +16,8 @@
#include <asm/checksum.h> #include <asm/checksum.h>
#include <asm/current.h> #include <asm/current.h>
extern int dump_fpu(struct pt_regs *, elf_fpregset_t *);
/* platform dependent support */ /* platform dependent support */
EXPORT_SYMBOL(dump_fpu);
EXPORT_SYMBOL(ip_fast_csum); EXPORT_SYMBOL(ip_fast_csum);
EXPORT_SYMBOL(kernel_thread); EXPORT_SYMBOL(kernel_thread);
......
...@@ -283,6 +283,7 @@ int dump_fpu(struct pt_regs *regs, struct user_m68kfp_struct *fpu) ...@@ -283,6 +283,7 @@ int dump_fpu(struct pt_regs *regs, struct user_m68kfp_struct *fpu)
#endif #endif
return 1; return 1;
} }
EXPORT_SYMBOL(dump_fpu);
/* /*
* Generic dumping code. Used for panic and debug. * Generic dumping code. Used for panic and debug.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册