diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-25 17:47:58 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-25 17:47:58 -0700 |
commit | ffbf0ab1a648b867ce953cc43557090f679bb9c1 (patch) | |
tree | df90a9fe3b46b636d977e9aa993efe5588436d1c /arch/m68k/kernel/m68k_ksyms_mm.c | |
parent | 73939bb56acef1c9e776a10f0aeea0456d6815f6 (diff) | |
parent | 66d857b08b8c3ed5c72c361f863cce77d2a978d7 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
m68k: merge m68k and m68knommu arch directories
Diffstat (limited to 'arch/m68k/kernel/m68k_ksyms_mm.c')
-rw-r--r-- | arch/m68k/kernel/m68k_ksyms_mm.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/m68k/kernel/m68k_ksyms_mm.c b/arch/m68k/kernel/m68k_ksyms_mm.c new file mode 100644 index 00000000000..d900e77e536 --- /dev/null +++ b/arch/m68k/kernel/m68k_ksyms_mm.c @@ -0,0 +1,16 @@ +#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); + |