summaryrefslogtreecommitdiffstats
path: root/arch/sparc/lib/mul.S
diff options
context:
space:
mode:
authorAl Viro2005-09-12 05:14:07 +0200
committerDavid S. Miller2005-09-12 05:14:07 +0200
commit7caaeabb17758295edff9703c18a840073c5b8f4 (patch)
treea33a4bcc77be6077fd8b787380bf13a38828d211 /arch/sparc/lib/mul.S
parentMerge branch 'release' of master.kernel.org:/pub/scm/linux/kernel/git/aegl/li... (diff)
downloadkernel-qcow2-linux-7caaeabb17758295edff9703c18a840073c5b8f4.tar.gz
kernel-qcow2-linux-7caaeabb17758295edff9703c18a840073c5b8f4.tar.xz
kernel-qcow2-linux-7caaeabb17758295edff9703c18a840073c5b8f4.zip
[SPARC]: Fix dot-symbol exporting for good.
From: Al Viro <viro@ZenIV.linux.org.uk> Instead of playing all of these hand-coded assembler aliasing games, just translate symbol names in the name space ".sym" to "_Sym" at module load time. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/lib/mul.S')
-rw-r--r--arch/sparc/lib/mul.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sparc/lib/mul.S b/arch/sparc/lib/mul.S
index 83dffbc2f62f..da693560d878 100644
--- a/arch/sparc/lib/mul.S
+++ b/arch/sparc/lib/mul.S
@@ -16,7 +16,9 @@
*/
.globl .mul
+ .globl _Mul
.mul:
+_Mul: /* needed for export */
mov %o0, %y ! multiplier -> Y
andncc %o0, 0xfff, %g0 ! test bits 12..31
be Lmul_shortway ! if zero, can do it the short way