Skip to content
Snippets Groups Projects
Commit bf459478 authored by David S. Miller's avatar David S. Miller
Browse files

math: Export mul_u64_u64_div_u64


Fixes: f51d7bf1 ("ptp_qoriq: fix overflow in ptp_qoriq_adjfine() u64 calcalation")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6f235a69
No related branches found
No related tags found
No related merge requests found
......@@ -232,4 +232,5 @@ u64 mul_u64_u64_div_u64(u64 a, u64 b, u64 c)
return res + div64_u64(a * b, c);
}
EXPORT_SYMBOL(mul_u64_u64_div_u64);
#endif
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