[S390]: Fix build on 31-bit.
authorDavid S. Miller <davem@sunset.davemloft.net>
Wed, 11 Apr 2007 05:10:39 +0000 (22:10 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Thu, 26 Apr 2007 05:28:53 +0000 (22:28 -0700)
Allow s390 to properly override the generic
__div64_32() implementation by:

1) Using obj-y for div64.o in s390's makefile instead
   of lib-y

2) Adding the weak attribute to the generic implementation.

Signed-off-by: David S. Miller <davem@davemloft.net>
arch/s390/lib/Makefile
arch/s390/lib/div64.c
lib/div64.c

index 7a44fed21b35cb39f1beb1991991ab48bcb3d0a7..59aea65ce99fc0845e88c540d7866b736cd28146 100644 (file)
@@ -5,6 +5,6 @@
 EXTRA_AFLAGS := -traditional
 
 lib-y += delay.o string.o uaccess_std.o uaccess_pt.o qrnnd.o
-lib-$(CONFIG_32BIT) += div64.o
+obj-$(CONFIG_32BIT) += div64.o
 lib-$(CONFIG_64BIT) += uaccess_mvcos.o
 lib-$(CONFIG_SMP) += spinlock.o
index 0481f3424a13ce03a06d564b173f69261f660174..a5f8300bf3ee2c8fa61a86f9ea798cd80cd4817f 100644 (file)
@@ -147,5 +147,3 @@ uint32_t __div64_32(uint64_t *n, uint32_t base)
 }
 
 #endif /* MARCH_G5 */
-
-EXPORT_SYMBOL(__div64_32);
index 74f0c8cb40315f6b985c96a238dbb99b382931d6..b71cf93c529adaa3364afa4a1b997c54cc9ef363 100644 (file)
@@ -23,7 +23,7 @@
 /* Not needed on 64bit architectures */
 #if BITS_PER_LONG == 32
 
-uint32_t __div64_32(uint64_t *n, uint32_t base)
+uint32_t __attribute__((weak)) __div64_32(uint64_t *n, uint32_t base)
 {
        uint64_t rem = *n;
        uint64_t b = base;