Skip to content
Snippets Groups Projects
Commit 83cc112e authored by Simon Glass's avatar Simon Glass
Browse files

lib: Don't instrument the div64 function


This function can be called from the timer code on instrumented functions.
Mark it as 'notrace' so that it doesn't cause infinite recursion.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent 5eca9779
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment