Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2327e36 authored by Shefali Jain's avatar Shefali Jain
Browse files

clk: qcom: clk-pll: Fix compilation warning from HF pll ops



The request rate is being assigned twice which throws
compilation warning, hence fix the same.

Change-Id: I688bfafcb445120707e299f2afc65edfc5959d8a
Signed-off-by: default avatarShefali Jain <shefjain@codeaurora.org>
parent 26ca81d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ clk_pll_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
							* req->best_parent_rate;

	else
		req->rate = req->rate = f->freq;
		req->rate = f->freq;

	return 0;
}