diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-09 17:57:21 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-09 17:57:21 +0900 |
commit | 1031a3a57ed76f5cb8754a89ddb22f3d9ebe8861 (patch) | |
tree | d96fa7501dcf7c74837e43a2bec084aea877eaec /arch/sh/kernel/sh_ksyms_64.c | |
parent | 2bcfffa42309b6f73042c62459bf5207762a271d (diff) | |
download | talos-op-linux-1031a3a57ed76f5cb8754a89ddb22f3d9ebe8861.tar.gz talos-op-linux-1031a3a57ed76f5cb8754a89ddb22f3d9ebe8861.zip |
sh: Provide an __sdivsi3_2 export for sh64.
Newer code paths that are heavier in 64-bit math manage to get this
generated by newer compilers, provide a definition and export
accordingly. This is trivially wrapped around the existing __sdivsi3
code.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/sh_ksyms_64.c')
-rw-r--r-- | arch/sh/kernel/sh_ksyms_64.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/kernel/sh_ksyms_64.c b/arch/sh/kernel/sh_ksyms_64.c index 0d74d6b8774e..8f54ef0cfbca 100644 --- a/arch/sh/kernel/sh_ksyms_64.c +++ b/arch/sh/kernel/sh_ksyms_64.c @@ -76,5 +76,7 @@ EXPORT_SYMBOL(strcpy); #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name) DECLARE_EXPORT(__sdivsi3); +DECLARE_EXPORT(__sdivsi3_1); +DECLARE_EXPORT(__sdivsi3_2); DECLARE_EXPORT(__udivsi3); DECLARE_EXPORT(__div_table); |