diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-03-25 19:54:23 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-25 22:23:33 -0700 |
commit | 3927f2e8f9afa3424bb51ca81f7abac01ffd0005 (patch) | |
tree | da9e335169572e6c743c084edce6a802f9e667ee /include/asm-arm | |
parent | 9d729f72dca9406025bcfa9c1f660d71d9ef0ff5 (diff) | |
download | talos-obmc-linux-3927f2e8f9afa3424bb51ca81f7abac01ffd0005.tar.gz talos-obmc-linux-3927f2e8f9afa3424bb51ca81f7abac01ffd0005.zip |
[NET]: div64_64 consolidate (rev3)
Here is the current version of the 64 bit divide common code.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/div64.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-arm/div64.h b/include/asm-arm/div64.h index 37e0a96e8789..0b5f881c3d85 100644 --- a/include/asm-arm/div64.h +++ b/include/asm-arm/div64.h @@ -2,6 +2,7 @@ #define __ASM_ARM_DIV64 #include <asm/system.h> +#include <linux/types.h> /* * The semantics of do_div() are: @@ -223,4 +224,6 @@ #endif +extern uint64_t div64_64(uint64_t dividend, uint64_t divisor); + #endif |