1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __ASM_DIV64_H__ 3 #define __ASM_DIV64_H__ 4 5 #include <asm-generic/div64.h> 6 7 extern u64 div_u64(u64 dividend, u64 divisor); 8 extern s64 div_s64(s64 dividend, s64 divisor); 9 10 #define div_u64 div_u64 11 #define div_s64 div_s64 12 13 #endif 14