-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Greg Ungerer
committed
May 24, 2011
1 parent
d8f0154
commit 999cff3
Showing
4 changed files
with
33 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 2c7f3feb63276f08dd289a2cb29694af17ad70dd | ||
refs/heads/master: a697dc934f52355494b746d7b5568227e0910ae8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,33 @@ | ||
#ifdef CONFIG_MMU | ||
#include "m68k_ksyms_mm.c" | ||
#else | ||
#include "m68k_ksyms_no.c" | ||
#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(__mc68020__) && !defined(__mc68030__) && \ | ||
!defined(__mc68040__) && !defined(__mc68060__) && !defined(__mcpu32__) | ||
/* | ||
* 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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.