mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
PM: AVS: qcom-cpr: Use div64_ul instead of do_div
[ Upstream commit 92c550f9ff ]
do_div() does a 64-by-32 division. Here the divisor is an unsigned long
which on some platforms is 64 bit wide. So use div64_ul instead of do_div
to avoid a possible truncation.
Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20211125014311.45942-1-deng.changcheng@zte.com.cn
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
c0a1d844e3
commit
81d2e96aba
|
|
@ -1043,7 +1043,7 @@ static int cpr_interpolate(const struct corner *corner, int step_volt,
|
||||||
return corner->uV;
|
return corner->uV;
|
||||||
|
|
||||||
temp = f_diff * (uV_high - uV_low);
|
temp = f_diff * (uV_high - uV_low);
|
||||||
do_div(temp, f_high - f_low);
|
temp = div64_ul(temp, f_high - f_low);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* max_volt_scale has units of uV/MHz while freq values
|
* max_volt_scale has units of uV/MHz while freq values
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user