Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>tirimbino
parent
00fc0e0dda
commit
d13ffb5630
@ -0,0 +1,3 @@ |
||||
#define KSYM_ALIGN 2 |
||||
#define KCRC_ALIGN 2 |
||||
#include <asm-generic/export.h> |
@ -1,32 +0,0 @@ |
||||
#include <linux/module.h> |
||||
|
||||
asmlinkage long long __ashldi3 (long long, int); |
||||
asmlinkage long long __ashrdi3 (long long, int); |
||||
asmlinkage long long __lshrdi3 (long long, int); |
||||
asmlinkage long long __muldi3 (long long, long long); |
||||
|
||||
/* The following are special because they're not called
|
||||
explicitly (the C compiler generates them). Fortunately, |
||||
their interface isn't gonna change any time soon now, so |
||||
it's OK to leave it out of version control. */ |
||||
EXPORT_SYMBOL(__ashldi3); |
||||
EXPORT_SYMBOL(__ashrdi3); |
||||
EXPORT_SYMBOL(__lshrdi3); |
||||
EXPORT_SYMBOL(__muldi3); |
||||
|
||||
#if defined(CONFIG_CPU_HAS_NO_MULDIV64) |
||||
/*
|
||||
* Simpler 68k and ColdFire parts also need a few other gcc functions. |
||||
*/ |
||||
extern long long __divsi3(long long, long long); |
||||
extern long long __modsi3(long long, long long); |
||||
extern long long __mulsi3(long long, long long); |
||||
extern long long __udivsi3(long long, long long); |
||||
extern long long __umodsi3(long long, long long); |
||||
|
||||
EXPORT_SYMBOL(__divsi3); |
||||
EXPORT_SYMBOL(__modsi3); |
||||
EXPORT_SYMBOL(__mulsi3); |
||||
EXPORT_SYMBOL(__udivsi3); |
||||
EXPORT_SYMBOL(__umodsi3); |
||||
#endif |
Loading…
Reference in new issue