[MIPS] Fixup migration to GENERIC_TIME
[safe/jmp/linux-2.6] / include / asm-mips / div64.h
index 5f7dcf5..d107832 100644 (file)
 #if (_MIPS_SZLONG == 64)
 
 /*
- * Don't use this one in new code
- */
-#define do_div64_32(res, high, low, base) ({ \
-       unsigned int __quot, __mod; \
-       unsigned long __div; \
-       unsigned int __low, __high, __base; \
-       \
-       __high = (high); \
-       __low = (low); \
-       __div = __high; \
-       __div = __div << 32 | __low; \
-       __base = (base); \
-       \
-       __mod = __div % __base; \
-       __div = __div / __base; \
-       \
-       __quot = __div; \
-       (res) = __quot; \
-       __mod; })
-
-/*
  * Hey, we're already 64-bit, no
  * need to play games..
  */