diff options
Diffstat (limited to 'lib/div64.c')
-rw-r--r-- | lib/div64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/div64.c b/lib/div64.c index 795ef0e1e4..319fca50fa 100644 --- a/lib/div64.c +++ b/lib/div64.c @@ -18,8 +18,9 @@ #include <div64.h> #include <linux/types.h> +#include <linux/compiler.h> -uint32_t __div64_32(uint64_t *n, uint32_t base) +uint32_t notrace __div64_32(uint64_t *n, uint32_t base) { uint64_t rem = *n; uint64_t b = base; |