summaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/div64.h
blob: a36d2443d2093bd87dd21df4670e9d4a62354e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __SPARC64_DIV64
#define __SPARC64_DIV64

/*
 * Hey, we're already 64-bit, no
 * need to play games..
 */
#define do_div(n,base) ({ \
	int __res; \
	__res = ((unsigned long) n) % (unsigned) base; \
	n = ((unsigned long) n) / (unsigned) base; \
	__res; })

#endif /* __SPARC64_DIV64 */