Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67cc09ed authored by Greg Ungerer's avatar Greg Ungerer
Browse files

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: default avatarGreg Ungerer <gerg@uclinux.org>
parent b1ffa259
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -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);
+1 −0
Original line number Original line Diff line number Diff line
@@ -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.