diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2020-08-20 09:48:23 +0200 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2020-08-24 13:34:37 +0200 |
commit | 8aaf6264fc7fde15864c3e4d84ccc8b3af6811f3 (patch) | |
tree | 819aac89fce6aee71d93239d59f2ede9886fe159 /drivers/opp/cpu.c | |
parent | opp: Split out _opp_set_rate_zero() (diff) | |
download | linux-8aaf6264fc7fde15864c3e4d84ccc8b3af6811f3.tar.xz linux-8aaf6264fc7fde15864c3e4d84ccc8b3af6811f3.zip |
opp: Remove _dev_pm_opp_find_and_remove_table() wrapper
Remove the unnecessary wrapper and merge
_dev_pm_opp_find_and_remove_table() with dev_pm_opp_remove_table().
Tested-by: Rajendra Nayak <rnayak@codeaurora.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/opp/cpu.c')
-rw-r--r-- | drivers/opp/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/opp/cpu.c b/drivers/opp/cpu.c index b5055cc886ef..5004335cf0de 100644 --- a/drivers/opp/cpu.c +++ b/drivers/opp/cpu.c @@ -124,7 +124,7 @@ void _dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask, continue; } - _dev_pm_opp_find_and_remove_table(cpu_dev); + dev_pm_opp_remove_table(cpu_dev); } } |