mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-28 16:56:26 +00:00
clk: tegra: use clamp() in tegra_bpmp_clk_determine_rate()
When it needs to get a value within a certain interval, using clamp() makes the code easier to understand than min(max()). Signed-off-by: Li Zetao <lizetao1@huawei.com> Link: https://lore.kernel.org/r/20240830012344.603704-1-lizetao1@huawei.com Acked-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
d22e5f9bbb
commit
b961b659ad
@ -174,7 +174,7 @@ static int tegra_bpmp_clk_determine_rate(struct clk_hw *hw,
|
||||
unsigned long rate;
|
||||
int err;
|
||||
|
||||
rate = min(max(rate_req->rate, rate_req->min_rate), rate_req->max_rate);
|
||||
rate = clamp(rate_req->rate, rate_req->min_rate, rate_req->max_rate);
|
||||
|
||||
memset(&request, 0, sizeof(request));
|
||||
request.rate = min_t(u64, rate, S64_MAX);
|
||||
|
Loading…
Reference in New Issue
Block a user