aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/lib/Makefile
diff options
context:
space:
mode:
authorMike Frysinger <michael.frysinger@analog.com>2007-11-23 11:28:11 +0800
committerBryan Wu <bryan.wu@analog.com>2007-11-23 11:28:11 +0800
commit1754a5d9f97f16f729066b8f125351af4951d6fe (patch)
treecb19d854eb21c6db5de9de804ba08859b3e531ab /arch/blackfin/lib/Makefile
parentBlackfin arch: fix spurious newline in header (diff)
downloadlinux-dev-1754a5d9f97f16f729066b8f125351af4951d6fe.tar.xz
linux-dev-1754a5d9f97f16f729066b8f125351af4951d6fe.zip
Blackfin arch: use do_div() for the 64bit division as pointed out by Bernd
If you need a 64 bit divide in the kernel, use asm/div64.h. Revert the addition of udivdi3. Cc: Bernd Schmidt <bernd.schmidt@analog.com> Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to '')
-rw-r--r--arch/blackfin/lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/lib/Makefile b/arch/blackfin/lib/Makefile
index bfdad52c570b..635288fc5f54 100644
--- a/arch/blackfin/lib/Makefile
+++ b/arch/blackfin/lib/Makefile
@@ -4,7 +4,7 @@
lib-y := \
ashldi3.o ashrdi3.o lshrdi3.o \
- muldi3.o divsi3.o udivsi3.o udivdi3.o modsi3.o umodsi3.o \
+ muldi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o \
checksum.o memcpy.o memset.o memcmp.o memchr.o memmove.o \
strcmp.o strcpy.o strncmp.o strncpy.o \
umulsi3_highpart.o smulsi3_highpart.o \