PM / OPP: optimize dev_pm_opp_set_rate() performance a bit
authorJisheng Zhang <jszhang@marvell.com>
Mon, 25 Jul 2016 06:11:16 +0000 (14:11 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 28 Jul 2016 21:54:16 +0000 (23:54 +0200)
commit067b7ce083df6c69e67345bdba658ab59274cc01
tree868c5698b001c902fbad61e4afb9b8c2b1581536
parent523d939ef98fd712632d93a5a2b588e477a7565e
PM / OPP: optimize dev_pm_opp_set_rate() performance a bit

In dev_pm_opp_set_rate(), _find_opp_table() is called 4 times: once by
_get_opp_clk(), once by dev_pm_opp_set_rate() itself, and twice by
dev_pm_opp_find_freq_ceil(). If there are several opp_tables in the
system, three times of opp table finding is a big waste. This patch
reduced the call of _find_opp_table() to twice.

Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/opp/core.c