Lines Matching refs:tmp_req
88 struct clk_rate_request tmp_req;
92 clk_hw_forward_rate_request(hw, req, parent, &tmp_req, req->rate);
94 &tmp_req,
100 req->rate = tmp_req.rate;
101 req->best_parent_hw = tmp_req.best_parent_hw;
102 req->best_parent_rate = tmp_req.best_parent_rate;
108 struct clk_rate_request tmp_req;
114 clk_hw_forward_rate_request(hw, req, parent, &tmp_req, req->rate);
116 &tmp_req,
122 if (req->rate >= tmp_req.rate)
123 rate_diff = req->rate - tmp_req.rate;
125 rate_diff = tmp_req.rate - req->rate;
130 req->best_parent_rate = tmp_req.best_parent_rate;
132 best_rate = tmp_req.rate;